.elementor-28 .elementor-element.elementor-element-d4e353f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d2d4fdf *//* ==========================================================================
   1. RESET & BASE STYLES (Mobile First)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    -webkit-tap-highlight-color: transparent; /* Mobile touch blue glow hatane ke liye */
}

body {
    background-color: #050c0f; /* Deep dark background */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 15px; /* Mobile screens par side gaps ke liye */
}

/* Responsive Container */
.container {
    width: 100%;
    max-width: 420px; /* Standard Mobile width ke liye perfect sizing */
    text-align: center;
    padding: 25px 20px;
    background: radial-gradient(circle at center, #0e1e24 0%, #050c0f 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   2. TOP BADGE (Responsive Sizing)
   ========================================================================== */
.top-badge {
    display: inline-block;
    background: linear-gradient(90deg, #00ff87, #60efff, #ff416c);
    background-size: 200% auto;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.3);
    word-break: break-word; /* Choti screens par text wrap hone ke liye */
}

/* ==========================================================================
   3. FIXED LOGO SECTION (As per Image 261d4659-6b73-4f88-8a66-02b4610b24db)
   ========================================================================== */

/* Outer Box - Jo premium squircle border banayega aur pulsing glow karega */
.logo-container {
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    background-color: #050c0f; /* Background match karne ke liye */
    padding: 6px; /* Logo ke chaaro taraf thoda premium gap */
    border-radius: 32px; /* Smooth rounded outer box */
    border: 2px solid #10b981; /* Glowing outer border */
    animation: neonPulse 2s infinite ease-in-out;
}

/* Inner Logo - Jo is black box ke andar perfectly gol (circle) fit hoga */
.profile-logo {
    width: 115px;
    height: 115px;
    border-radius: 50%; /* Image ke corners ko perfectly gol kaatne ke liye */
    object-fit: cover;
    display: block;
}

/* Pulsing Glow Animation */
@keyframes neonPulse {
    0% {
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.75);
        transform: scale(1.03); /* Chota sa pulsing bounce */
    }
    100% {
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }
}

/* ==========================================================================
   4. TYPOGRAPHY (Mobile Fonts)
   ========================================================================== */
.main-title {
    color: #00ffcc;
    font-size: 24px; /* Mobile par clean dikhne ke liye */
    font-weight: 800;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 13.5px;
    line-height: 1.5;
    color: #cbd5e1;
    margin-bottom: 20px;
    padding: 0 5px;
}

.highlight {
    color: #ff9900;
    font-weight: 700;
}

.instruction {
    font-size: 11.5px;
    color: #94a3b8;
    margin-bottom: 20px;
    padding: 0 10px;
}

/* ==========================================================================
   5. ACTION BUTTONS (Touch Friendly & Gradient)
   ========================================================================== */
.btn {
    display: block;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 15px; /* Mobile touch target area ke liye standard size */
    border-radius: 30px;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.btn-gradient {
    background: linear-gradient(90deg, #00f2fe 0%, #4facfe 40%, #ff9900 100%);
    color: #050c0f;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.2);
}

/* Mobile responsive active/press effect */
.btn:active {
    transform: scale(0.98);
    filter: brightness(0.9);
}

/* ==========================================================================
   6. FEATURE LIST ITEMS
   ========================================================================== */
.features-list {
    margin-bottom: 20px;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 10px;
    text-align: left;
    font-size: 13px;
    color: #e2e8f0;
    backdrop-filter: blur(10px);
}

/* ==========================================================================
   7. FOOTER DISCLAIMER
   ========================================================================== */
.footer-text {
    font-size: 11px;
    color: #475569;
    margin-top: 20px;
    line-height: 1.4;
}

/* ==========================================================================
   8. EXTRA SMALL SCREENS OPTIMIZATION
   ========================================================================== */
@media (max-width: 360px) {
    .container {
        padding: 15px 12px;
    }
    .main-title {
        font-size: 21px;
    }
    .logo-container {
        padding: 4px;
    }
    .profile-logo {
        width: 100px;
        height: 100px;
    }
    .btn {
        font-size: 14px;
        padding: 12px;
    }
    .feature-item {
        font-size: 12px;
        padding: 12px 15px;
    }
}/* End custom CSS */