        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --dark-bg: #0a0e27;
            --card-bg: rgba(255, 255, 255, 0.05);
            --card-border: rgba(255, 255, 255, 0.1);
            --text-primary: #ffffff;
            --text-secondary: #b8c5d6;
            --accent-color: #00f2fe;
            --success-color: #10b981;
            --warning-color: #f59e0b;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--card-border);
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }
        .header-logo {
            flex-shrink: 0;
        }
        .logo-link {
            text-decoration: none;
        }
        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }
        .hamburger-line {
            width: 28px;
            height: 3px;
            background: var(--text-primary);
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        .hamburger.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        .hamburger.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        .nav {
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            margin-bottom: 0;
            padding-left: 0;
        }
        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }
        .nav-link:hover {
            color: var(--accent-color);
        }
        .cta-button {
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s ease;
            display: inline-block;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .btn-primary {
            background: var(--primary-gradient);
            color: var(--text-primary);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
            color: var(--text-primary);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .main-content {
            margin-top: 80px;
        }

        .section {
            padding: 80px 0;
            position: relative;
        }

        .hero-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            padding: 120px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(135deg, #ffffff 0%, #a8b8d8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .hero-description {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 900px;
            margin: 0 auto 2.5rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .hero-cta {
            font-size: 1.1rem;
            padding: 16px 40px;
            position: relative;
            z-index: 1;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-intro {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .table-wrapper {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 16px;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .info-table,
        .payment-table {
            width: 100%;
            border-collapse: collapse;
        }

        .info-table th,
        .info-table td,
        .payment-table th,
        .payment-table td {
            padding: 1.2rem 1.5rem;
            text-align: left;
            border-bottom: 1px solid var(--card-border);
            color: var(--text-primary);
        }

        .info-table th,
        .payment-table th {
            font-weight: 600;
            background: rgba(102, 126, 234, 0.1);
            color: var(--accent-color);
        }

        .info-table tbody tr:last-child th,
        .info-table tbody tr:last-child td,
        .payment-table tbody tr:last-child th,
        .payment-table tbody tr:last-child td {
            border-bottom: none;
        }

        .info-table tbody tr:hover,
        .payment-table tbody tr:hover {
            background: rgba(102, 126, 234, 0.05);
        }

        .overview-text {
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin-top: 2rem;
            line-height: 1.8;
        }

        .content-block {
            margin-bottom: 4rem;
        }

        .content-subtitle {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .content-block p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .steps-timeline {
            position: relative;
            padding-left: 3rem;
            margin: 2rem 0;
        }

        .steps-timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 20px;
            bottom: 20px;
            width: 2px;
            background: var(--primary-gradient);
        }

        .step-item {
            position: relative;
            margin-bottom: 2rem;
            display: flex;
            gap: 2rem;
            align-items: flex-start;
        }

        .step-number {
            position: absolute;
            left: -3rem;
            width: 40px;
            height: 40px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }

        .step-content p {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .verification-list,
        .bonus-breakdown-list,
        .terms-list,
        .live-games-list,
        .security-list {
            list-style: none;
            padding-left: 0;
            margin: 1.5rem 0;
        }

        .verification-list li,
        .bonus-breakdown-list li,
        .terms-list li,
        .live-games-list li,
        .security-list li {
            padding-left: 2rem;
            margin-bottom: 1rem;
            position: relative;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .verification-list li::before,
        .bonus-breakdown-list li::before,
        .terms-list li::before,
        .live-games-list li::before,
        .security-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent-color);
            font-weight: 700;
        }

        .content-image,
        .bonus-banner,
        .live-casino-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            margin: 2rem 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }
        img[src*="horizontal"], img[src*="vertical"], img[src*="wide"] {
            margin: 10px auto;
            display: block;
            max-width: 500px;
        }

        .features-grid,
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .feature-card,
        .game-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .feature-card:hover,
        .game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
            border-color: rgba(102, 126, 234, 0.5);
        }

        .feature-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.6;
        }

        .game-icon {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 1rem;
        }

        .game-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .game-info {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin: 0;
        }

        .download-instructions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .instruction-block {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 2rem;
        }

        .instruction-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .instruction-block p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
        }

        .promo-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .promo-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.4s ease;
        }

        .promo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
        }

        .promo-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            background: var(--secondary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .promo-card p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
        }

        .bonus-breakdown-title,
        .category-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin: 2rem 0 1rem;
            color: var(--text-primary);
        }

        .games-category {
            margin: 3rem 0;
        }

        .advantages-list {
            display: grid;
            gap: 2rem;
            margin: 2rem 0;
        }

        .advantage-item {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.4s ease;
        }

        .advantage-item:hover {
            border-color: rgba(102, 126, 234, 0.5);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        }

        .advantage-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .advantage-item p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
        }

        .payment-note {
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(102, 126, 234, 0.05);
            border-radius: 12px;
            border-left: 4px solid var(--accent-color);
        }

        .responsible-tools {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .tool-item {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 2rem;
        }

        .tool-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--success-color);
        }

        .tool-item p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .faq-item:hover {
            border-color: rgba(102, 126, 234, 0.5);
        }

        .faq-question {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .faq-answer p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
        }

        .cta-section {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
            text-align: center;
            padding: 100px 0;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
        }

        .cta-button-large {
            font-size: 1.2rem;
            padding: 18px 50px;
        }

        .footer {
            background: rgba(10, 14, 39, 0.95);
            border-top: 1px solid var(--card-border);
            padding: 3rem 0 2rem;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            text-align: center;
        }

        .footer-logo .logo-text {
            font-size: 1.3rem;
        }

        .footer-nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer-disclaimer {
            max-width: 700px;
        }

        .disclaimer-text,
        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                padding: 100px 2rem 2rem;
                transition: right 0.4s ease;
                border-left: 1px solid var(--card-border);
                z-index: 999;
            }
            .nav.active {
                right: 0;
            }
            .nav-list {
                flex-direction: column;
                gap: 1.5rem;
                align-items: flex-start;
                margin-bottom: 0;
                padding-left: 0;
            }
            .header-container .cta-button {
                display: none;
            }
            .nav-list::after {
                content: '';
                display: block;
                margin-top: 1rem;
            }
            .nav-list .nav-item:last-child::after {
                content: '';
                display: block;
                margin-top: 1.5rem;
            }
        @media (max-width: 480px) {
            .features-grid,
            .games-grid,
            .download-instructions,
            .promo-cards,
            .responsible-tools {
                grid-template-columns: 1fr;
            }
        }


@media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                padding: 100px 2rem 2rem;
                transition: right 0.4s ease;
                border-left: 1px solid var(--card-border);
                z-index: 999;
            }

            .nav.active {
                right: 0;
            }

            .nav-list {
                flex-direction: column;
                gap: 1.5rem;
                align-items: flex-start;
                margin-bottom: 0;
                padding-left: 0;
            }

            .header-container .cta-button {
                display: none;
            }

            .nav-list::after {
                content: '';
                display: block;
                margin-top: 1rem;
            }

            .nav-list .nav-item:last-child::after {
                content: '';
                display: block;
                margin-top: 1.5rem;
            }

            .hero-section {
                padding: 80px 0 60px;
            }

            .section {
                padding: 60px 0;
            }

            .steps-timeline {
                padding-left: 2.5rem;
            }

            .step-number {
                left: -2.5rem;
            }

            .info-table th,
            .info-table td,
            .payment-table th,
            .payment-table td {
                padding: 1rem;
                font-size: 0.9rem;
            }
        }