        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: #080808;
            color: #fff;
            font-family: 'Rajdhani', sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Rich dark BG */

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255, 160, 0, 0.07) 0%, transparent 60%), radial-gradient(ellipse 60% 40% at 10% 60%, rgba(220, 100, 0, 0.05) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 90% 80%, rgba(180, 80, 0, 0.05) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .wrap {
            position: relative;
            z-index: 1;
            max-width: 440px;
            margin: 0 auto;
            padding: 0 15px 120px;
        }

        /* TOPBAR */

        .topbar {
            position: sticky;
            top: 0;
            z-index: 200;
            display: flex;
            justify-content: center;
            padding: 11px 16px;
            background: rgba(8, 8, 8, 0.95);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 140, 0, 0.12);
        }

        .topbar-inner {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(255, 200, 80, 0.9);
        }

        .live-dot {
            width: 7px;
            height: 7px;
            background: #00E676;
            border-radius: 50%;
            box-shadow: 0 0 6px #00E676;
            animation: blink 1.4s infinite;
        }

        @keyframes blink {
            0%,
            100% {
                opacity: 1
            }
            50% {
                opacity: 0.2
            }
        }

        /* HERO */

        .hero {
            text-align: center;
            padding: 36px 10px 20px;
        }

        .logo-outer {
            position: relative;
            display: inline-block;
            margin-bottom: 24px;
        }

        /* Outer glow pulse */

        .logo-outer::before {
            content: '';
            position: absolute;
            inset: -22px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 140, 0, 0.18) 0%, transparent 65%);
            animation: gpulse 3s ease-in-out infinite;
        }

        @keyframes gpulse {
            0%,
            100% {
                opacity: 0.4;
                transform: scale(1)
            }
            50% {
                opacity: 1;
                transform: scale(1.1)
            }
        }

        /* Spinning ring */

        .logo-ring {
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 1.5px solid transparent;
            background: conic-gradient( from 0deg, rgba(255, 180, 0, 0.8), rgba(255, 100, 0, 0.4), rgba(255, 200, 50, 0.9), rgba(180, 80, 0, 0.3), rgba(255, 180, 0, 0.8)) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: destination-out;
            mask-composite: exclude;
            animation: rspin 6s linear infinite;
        }

        @keyframes rspin {
            from {
                transform: rotate(0)
            }
            to {
                transform: rotate(360deg)
            }
        }

        .logo-img {
            width: 116px;
            height: 116px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 150, 0, 0.5);
            box-shadow: 0 0 0 1px rgba(255, 100, 0, 0.2), 0 0 24px rgba(255, 120, 0, 0.25), 0 6px 24px rgba(0, 0, 0, 0.8);
            position: relative;
            z-index: 1;
            display: block;
        }

        .hero-title {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 30px;
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: 1px;
            /* White to warm white — clean, premium */
            color: #fff;
            text-shadow: 0 0 40px rgba(255, 160, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.8);
            margin-bottom: 8px;
        }

        .hero-sub {
            font-size: 11px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: rgba(255, 180, 80, 0.5);
            font-weight: 600;
            margin-bottom: 18px;
        }

        .stars {
            display: flex;
            justify-content: center;
            gap: 3px;
            margin-bottom: 5px;
        }

        .star {
            font-size: 18px;
            color: #FFA500;
        }

        .rating-txt {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.35);
            margin-bottom: 24px;
        }

        /* TRUST PILLS */

        .pills {
            display: flex;
            justify-content: center;
            gap: 7px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 6px 14px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            font-size: 11.5px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
        }

        /* APP ROW */

        .app-row {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 15px;
            margin-bottom: 22px;
        }

        .app-logo-box {
            width: 56px;
            height: 56px;
            border-radius: 13px;
            background: rgba(255, 140, 0, 0.1);
            border: 1px solid rgba(255, 140, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            color: rgba(255, 160, 0, 0.9);
            flex-shrink: 0;
            overflow: hidden;
        }

        .app-logo-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
        }

        .app-name {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
        }

        .app-dev {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.3);
            margin-top: 2px;
        }

        .app-meta {
            font-size: 10.5px;
            color: rgba(255, 140, 0, 0.4);
            margin-top: 5px;
        }

        /* STATS */

        .stats {
            display: flex;
            justify-content: space-around;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 16px;
            padding: 20px 8px;
            margin-bottom: 26px;
        }

        .stat {
            text-align: center;
        }

        .stat-n {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 21px;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }

        .stat-l {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.3);
            margin-top: 5px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* DIVIDER */

        .divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 24px 0;
        }

        .div-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.2), transparent);
        }

        .div-gem {
            color: rgba(255, 140, 0, 0.4);
            font-size: 12px;
        }

        /* SEC TITLE */

        .sec-title {
            font-family: 'Playfair Display', serif;
            font-size: 19px;
            font-weight: 700;
            color: #fff;
            text-align: center;
            margin-bottom: 16px;
        }

        /* FEATURES */

        .features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 26px;
        }

        .feat {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            padding: 16px 12px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .feat::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.35), transparent);
        }

        .feat-icon {
            font-size: 28px;
            margin-bottom: 8px;
            display: block;
        }

        .feat-name {
            font-size: 13px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }

        .feat-desc {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.3);
            line-height: 1.5;
        }

        /* DOWNLOAD BUTTON — Orange fire */

        .dl-btn,
        .fixed-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 11px;
            width: 100%;
            padding: 18px 20px;
            background: linear-gradient(135deg, #FF8C00 0%, #FF6000 50%, #E04500 100%);
            border: none;
            border-radius: 15px;
            font-family: 'Cinzel Decorative', cursive;
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 0 4px 30px rgba(255, 100, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.6);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.3px;
            transition: transform 0.15s, box-shadow 0.15s;
        }

        .dl-btn:active,
        .fixed-btn:active {
            transform: scale(0.97) !important;
            animation: none !important;
        }

        .dl-btn::after,
        .fixed-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -80%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            animation: sheen 2.8s ease-in-out infinite;
        }

        @keyframes sheen {
            0% {
                left: -80%
            }
            100% {
                left: 180%
            }
        }

        .btn-ico {
            font-size: 21px;
        }

        .dl-wrap {
            margin: 22px 0;
            text-align: center;
        }

        .dl-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.25);
            letter-spacing: 2px;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        .dl-note {
            font-size: 10.5px;
            color: rgba(255, 255, 255, 0.2);
            margin-top: 10px;
        }

        /* TESTIMONIALS */

        .testi {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            padding: 16px;
            margin-bottom: 10px;
        }

        .testi-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .testi-name {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
        }

        .testi-stars {
            font-size: 13px;
            color: #FFA500;
        }

        .testi-text {
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.6;
        }

        .verified {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 10.5px;
            color: #00E676;
            font-weight: 700;
            margin-top: 8px;
        }

        /* GUARANTEE */

        .guarantee {
            border: 1px solid rgba(0, 200, 100, 0.18);
            background: rgba(0, 200, 100, 0.04);
            border-radius: 14px;
            padding: 18px;
            margin: 24px 0;
            text-align: center;
        }

        .g-icon {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .g-title {
            font-size: 14.5px;
            font-weight: 700;
            color: #00E676;
            margin-bottom: 7px;
        }

        .g-text {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.35);
            line-height: 1.65;
        }

        /* STEPS */

        .steps {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            padding: 18px;
            margin-bottom: 28px;
        }

        .step {
            display: flex;
            gap: 13px;
            align-items: flex-start;
            margin-bottom: 14px;
        }

        .step:last-child {
            margin-bottom: 0;
        }

        .step-num {
            background: linear-gradient(135deg, #FF8C00, #E04500);
            color: #fff;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 900;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .step-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.55;
        }

        .step-text strong {
            color: rgba(255, 255, 255, 0.85);
        }

        /* FOOTER */

        .footer {
            text-align: center;
            font-size: 10.5px;
            color: rgba(255, 255, 255, 0.15);
            padding: 18px 0;
            line-height: 2;
        }

        /* FIXED BOTTOM */

        .fixed-bottom {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 440px;
            z-index: 999;
            padding: 12px 15px 18px;
            background: linear-gradient(0deg, rgba(8, 8, 8, 1) 55%, rgba(8, 8, 8, 0) 100%);
        }

        .fixed-btn {
            animation: bob 2.2s ease-in-out infinite;
        }

        @keyframes bob {
            0%,
            100% {
                transform: translateY(0);
                box-shadow: 0 4px 30px rgba(255, 100, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.6)
            }
            50% {
                transform: translateY(-3px);
                box-shadow: 0 8px 40px rgba(255, 100, 0, 0.65), 0 4px 14px rgba(0, 0, 0, 0.7)
            }
        }

        /* REVEAL */

        .r {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.45s ease, transform 0.45s ease;
        }

        .r.in {
            opacity: 1;
            transform: translateY(0);
        }