
        :root {
            --bg-page: #f8fafc;
            --text-main: #1e293b;
            --text-muted: #94a3b8;
            --accent-blue: #007bff;
            --accent-blue-hover: #00d4ff;
            --box-bg: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-page);
            color: var(--text-main);
            display: flex;
            flex-direction: column;
            align-items: stretch;
            min-height: 100vh;
            padding-bottom: 40px;
            overflow-x: hidden;
        }

        .main-div { width: 100%; }
        .d-none { display: none !important; }

        header {
            width: 100%;
            max-width: 100%;
            left: 0;
            right: 0;
            height: 46px;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #ffffff;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #e9edf2;
        }

        .header-left, .header-right {
            flex: 1;
            display: flex;
            align-items: center;
            height: 46px;
        }

        .header-right {
            justify-content: flex-end;
            font-weight: 700;
            font-size: 14px;
            color: var(--accent-blue);
        }

        .header-middle {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 46px;
        }

        .logo {
            font-weight: 400;
            color: var(--text-muted);
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            line-height: 46px;
        }

        .container {
            width: 100%;
            max-width: 360px;
            padding: 0 20px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-section {
            position: relative;
            margin-bottom: 30px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-section img {
            width: 100%;
            max-width: 320px;
            display: block;
            transition: transform 0.3s ease;
        }


        .promo-text {
            font-size: 10px;
            font-weight: 400;
            margin-bottom: 56px;
            line-height: 1.4;
            color: var(--text-muted);
        }

        .access-text {
            font-size: 20px;
            font-weight: 700;
            margin: 0 auto 15px auto;
            color: #080c14;
            text-transform: uppercase;
            letter-spacing: 0;
            white-space: normal;
            display: block;
            text-align: center;
            line-height: 1.2;
        }

        .instructions-list {
            font-size: 17px;
            font-weight: 600;
            color: #080c14;
            margin-bottom: 25px;
            text-align: left;
            display: inline-block;
            white-space: normal;
            margin-left: auto;
            margin-right: auto;
        }

        .instruction-step {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .step-number {
            background: var(--accent-blue);
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 12px;
            flex-shrink: 0;
        }

        .cta-button {
            background-color: var(--accent-blue);
            color: white;
            border: none;
            padding: 22px 50px;
            font-size: 24px;
            font-weight: 900;
            border-radius: 10px;
            width: 90%;
            max-width: 360px;
            cursor: pointer;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
            transition: all 0.2s ease;
            margin-bottom: 8px;
            letter-spacing: 1px;
            animation: flash 1s infinite ease-in-out;
        }

        .cta-button:focus,
        .cta-button:focus-visible {
            outline: none;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }

        .cta-button:hover {
            transform: scale(1.05);
            background-color: var(--accent-blue-hover);
            box-shadow: 0 8px 20px rgba(0, 123, 255, 0.5);
        }

        .disclaimer {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.25;
            margin-bottom: 14px;
            text-align: justify;
            text-align-last: center;
            word-spacing: -0.5px;
            letter-spacing: -0.2px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 8px;
        }

        .legal-peek-group {
            position: relative;
            top: 50px;
        }

        .link-box {
            background-color: transparent;
            color: var(--text-muted);
            text-decoration: none;
            padding: 5px 10px;
            font-size: 13px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.2s;
        }

        .link-box:hover {
            color: var(--accent-blue);
        }

        /* Animations */
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes flash {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7); }
            50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(0, 123, 255, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
        }

        .animate {
            animation: slideUp 0.6s ease forwards;
            opacity: 0;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }

        @media (max-width: 400px) {
            .access-text {
                font-size: 16px;
            }
            .instructions-list {
                font-size: 14px;
            }
            .cta-button {
                font-size: 20px;
                padding: 18px 40px;
            }
            .hero-section img {
                max-width: 280px;
            }
            .legal-peek-group {
                top: 40px;
            }
        }

        @media (max-width: 430px) and (max-height: 932px) {
            .legal-peek-group {
                top: 0 !important;
            }
        }

        @media (max-width: 480px) and (max-height: 900px) {
            .legal-peek-group {
                top: 0 !important;
            }
        }

        @media (max-width: 430px) and (max-height: 760px) {
            .legal-peek-group {
                top: -8px !important;
            }
        }

        @media (max-width: 400px) and (max-height: 720px) {
            .legal-peek-group {
                top: 18px !important;
            }
        }

        .topics-section {
            display: flex;
            justify-content: center;
            gap: 6px;
            flex-wrap: nowrap;
            margin: 34px auto 8px auto;
            max-width: 100%;
            overflow: hidden;
        }

        .topic-tag {
            background-color: transparent;
            color: var(--text-muted);
            padding: 5px 6px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .topic-tag:hover {
            color: var(--accent-blue);
            transform: translateY(-2px);
        }

        .sms-overlay {
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(248, 250, 252, 0.96);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 24px;
            text-align: center;
        }

        .sms-overlay-title {
            font-size: 18px;
            font-weight: 700;
            color: #080c14;
            margin-bottom: 16px;
        }

        .sms-overlay-retry {
            display: inline-block;
            background: var(--accent-blue);
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            border-radius: 10px;
            padding: 12px 18px;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.25);
        }
