        :root {
            --primary-dark: #1F498D;
            --primary-blue: #174076;
            --accent-orange: #f97316;
            --accent-gold: #fbbf24;
            --text-white: #f0f6fc;
            --text-gray: #c5d1de;
            --border-color: #3a6298;
            --card-bg: #265a9e;
            --success-green: #3fb950;
            --gradient-start: #f97316;
            --gradient-end: #fbbf24;
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-white);
            line-height: 1.7;
            min-height: 100vh;
        }

        a {
            color: var(--accent-orange);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        a:hover,
        a:focus {
            color: var(--accent-gold);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Header */
        .header {
            background: var(--primary-blue);
            border-bottom: 1px solid var(--border-color);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            color: var(--primary-dark);
        }

        .logo-text {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-white);
        }

        .logo-text span {
            color: var(--accent-orange);
        }

        .nav {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .nav-link {
            padding: 8px 14px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-gray);
            background: transparent;
            border: 1px solid transparent;
        }

        .nav-link:hover,
        .nav-link:focus {
            color: var(--text-white);
            border-color: var(--border-color);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: var(--primary-dark);
        }

        .btn-primary:hover,
        .btn-primary:focus {
            background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
            color: var(--primary-dark);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--accent-orange);
            color: var(--accent-orange);
        }

        .btn-outline:hover,
        .btn-outline:focus {
            background: var(--accent-orange);
            color: var(--primary-dark);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
            padding: 48px 0 64px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: clamp(28px, 6vw, 48px);
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .hero h1 span {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(16px, 3vw, 20px);
            color: var(--text-gray);
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .bonus-badge {
            display: inline-block;
            background: var(--card-bg);
            border: 2px solid var(--accent-orange);
            border-radius: 12px;
            padding: 20px 32px;
            margin-bottom: 32px;
        }

        .bonus-amount {
            font-size: clamp(32px, 8vw, 56px);
            font-weight: 800;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .bonus-label {
            font-size: 14px;
            color: var(--text-gray);
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-gray);
            font-size: 14px;
        }

        .trust-icon {
            width: 20px;
            height: 20px;
            background: var(--success-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--primary-dark);
        }

        /* Table of Contents */
        .toc {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 24px;
            margin: 40px auto;
            max-width: 800px;
        }

        .toc-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--accent-gold);
        }

        .toc-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 8px;
            list-style: none;
        }

        .toc-list li {
            padding: 8px 0;
        }

        .toc-list a {
            color: var(--text-gray);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .toc-list a::before {
            content: '→';
            color: var(--accent-orange);
        }

        .toc-list a:hover,
        .toc-list a:focus {
            color: var(--text-white);
        }

        /* Sections */
        .section {
            padding: 64px 0;
        }

        .section:nth-child(even) {
            background: var(--primary-blue);
        }

        .section h2 {
            font-size: clamp(24px, 5vw, 36px);
            font-weight: 700;
            margin-bottom: 24px;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 2px;
            margin: 16px auto 0;
        }

        .section h1 {
          font-size: clamp(28px, 6vw, 48px);
            font-weight: 800;
            margin-bottom: 24px;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section h1::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 2px;
            margin: 16px auto 0;
        }

        .section-intro {
            text-align: center;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 16px;
        }

        /* Info Table */
        .info-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            margin: 24px 0;
        }

        .info-table tr {
            border-bottom: 1px solid var(--border-color);
        }

        .info-table tr:last-child {
            border-bottom: none;
        }

        .info-table th,
        .info-table td {
            padding: 16px 20px;
            text-align: left;
            vertical-align: top;
        }

        .info-table th {
            background: #174076;
            font-weight: 600;
            color: var(--accent-gold);
            width: 40%;
        }

        .info-table td {
            color: var(--text-white);
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }

        .card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 28px;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
        }

        .card-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 16px;
        }

        .card-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-white);
        }

        .card-text {
            color: var(--text-gray);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Steps List */
        .steps {
            counter-reset: step;
            list-style: none;
            max-width: 700px;
            margin: 0 auto;
        }

        .steps li {
            counter-increment: step;
            display: flex;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
            align-items: flex-start;
        }

        .steps li:last-child {
            border-bottom: none;
        }

        .steps li::before {
            content: counter(step);
            min-width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
        }

        .step-content {
            flex: 1;
        }

        .step-title {
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-white);
        }

        .step-desc {
            color: var(--text-gray);
            font-size: 14px;
        }

        /* Sports Grid */
        .sports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 12px;
            margin-top: 32px;
        }

        .sport-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 20px 16px;
            text-align: center;
        }

        .sport-item:hover {
            border-color: var(--accent-orange);
        }

        .sport-icon {
            font-size: 32px;
            margin-bottom: 8px;
        }

        .sport-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-white);
        }

        /* Bonus Cards */
        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 32px;
        }

        .bonus-card {
            background: linear-gradient(135deg, var(--card-bg) 0%, rgba(249, 115, 22, 0.1) 100%);
            border: 1px solid var(--accent-orange);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
        }

        .bonus-card-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }

        .bonus-card-value {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-white);
            margin-bottom: 8px;
        }

        .bonus-card-desc {
            font-size: 13px;
            color: var(--text-gray);
        }

        /* Payment Methods */
        .payment-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-top: 32px;
        }

        .payment-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
        }

        .payment-icon {
            width: 28px;
            height: 28px;
            background: #174076;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            margin-bottom: 12px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 24px;
            font-weight: 600;
            color: var(--text-white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question::after {
            content: '+';
            font-size: 20px;
            color: var(--accent-orange);
        }

        .faq-answer {
            padding: 0 24px 20px;
            color: var(--text-gray);
            font-size: 14px;
            line-height: 1.7;
        }

        /* App Section */
        .app-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            align-items: center;
        }

        .app-content {
            text-align: center;
        }

        .app-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 24px;
        }

        .app-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 14px 24px;
            color: var(--text-white);
        }

        .app-btn:hover,
        .app-btn:focus {
            border-color: var(--accent-orange);
            color: var(--text-white);
        }

        .app-btn-icon {
            font-size: 28px;
        }

        .app-btn-text {
            text-align: left;
        }

        .app-btn-small {
            font-size: 11px;
            color: var(--text-gray);
        }

        .app-btn-large {
            font-size: 16px;
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background: var(--primary-blue);
            border-top: 1px solid var(--border-color);
            padding: 48px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-col-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-gray);
            font-size: 14px;
        }

        .footer-links a:hover,
        .footer-links a:focus {
            color: var(--text-white);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 13px;
        }

        .footer-legal {
            max-width: 700px;
            margin: 16px auto 0;
            font-size: 12px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Contact Info */
        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px;
            margin-top: 32px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-icon {
            width: 44px;
            height: 44px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .contact-text {
            text-align: left;
        }

        .contact-label {
            font-size: 12px;
            color: var(--text-gray);
        }

        .contact-value {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-white);
        }

        /* Responsive */
        @media (min-width: 768px) {
            .container {
                padding: 0 24px;
            }

            .header-inner {
                flex-wrap: nowrap;
            }

            .hero {
                padding: 80px 0 100px;
            }

            .section {
                padding: 80px 0;
            }

            .app-section {
                grid-template-columns: 1fr 1fr;
                text-align: left;
            }

            .app-content {
                text-align: left;
            }

            .app-buttons {
                justify-content: flex-start;
            }
        }

        @media (min-width: 1024px) {
            .container {
                padding: 0 32px;
            }

            .logo-icon {
                width: 48px;
                height: 48px;
                font-size: 20px;
            }

            .logo-text {
                font-size: 26px;
            }
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
        }
