        :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);
            --text-primary: #ffffff;
            --text-secondary: #b8c1ec;
            --accent-color: #00f2fe;
            --success-color: #10b981;
            --shadow-glow: 0 0 40px rgba(102, 126, 234, 0.4);
            --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.3);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at top, rgba(102, 126, 234, 0.15), transparent 50%),
                        radial-gradient(ellipse at bottom, rgba(118, 75, 162, 0.15), transparent 50%);
            pointer-events: none;
            z-index: -1;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 20px 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        .header-logo a {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .header-logo img {
            max-height: 50px;
        }
        .logo-text {
            font-size: 28px;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }
        .header-nav {
            display: flex;
            justify-content: center;
            padding-left: 0;
            margin-bottom: 0;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }
        .nav-list a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            transition: width 0.3s ease;
        }
        .nav-list a:hover {
            color: var(--text-primary);
        }
        .nav-list a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        .cta-button {
            padding: 14px 32px;
            background: var(--primary-gradient);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            display: inline-block;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-button::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;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

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

        .hero {
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #ffffff 0%, #b8c1ec 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1.5px;
        }

        .hero-description {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 900px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

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

        section.container {
            margin-top: 100px;
        }

        h2 {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 50px;
            text-align: center;
            background: linear-gradient(135deg, #ffffff 0%, #b8c1ec 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        h3 {
            font-size: 32px;
            font-weight: 700;
            margin: 40px 0 20px;
            color: var(--text-primary);
        }

        h4 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        p {
            font-size: 17px;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .table-wrapper {
            overflow-x: auto;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: var(--shadow-card);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            color: var(--text-primary);
        }

        table th {
            background: var(--primary-gradient);
            color: var(--text-primary);
            padding: 18px;
            text-align: left;
            font-weight: 600;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        table td {
            padding: 18px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 16px;
            color: var(--text-secondary);
        }

        table td strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        table tbody tr {
            transition: background 0.3s ease;
        }

        table tbody tr:hover {
            background: rgba(102, 126, 234, 0.1);
        }

        .subsection {
            margin: 50px 0;
        }

        .registration-image,
        .live-casino-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            margin: 30px auto;
            display: block;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        img[src*="horizontal"],
        img[src*="vertical"],
        img[src*="wide"] {
            margin: 10px auto;
            display: block;
            max-width: 500px;
        }

        @media (max-width: 768px) {
            section.container {
                margin-top: 200px !important;
            }
        }

        .verification-list,
        .features-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }

        .verification-list li,
        .features-list li {
            padding: 15px 20px;
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-left: 4px solid;
            border-image: var(--accent-gradient) 1;
            border-radius: 10px;
            margin-bottom: 15px;
            color: var(--text-secondary);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .verification-list li:hover,
        .features-list li:hover {
            background: rgba(102, 126, 234, 0.1);
            transform: translateX(10px);
        }

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

        .bonus-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-card);
        }

        .bonus-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-glow);
            border-color: rgba(102, 126, 234, 0.5);
        }

        .bonus-icon {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .bonus-card h4 {
            color: var(--text-primary);
            margin-bottom: 15px;
            font-size: 24px;
        }

        .bonus-card p {
            color: var(--text-secondary);
            font-size: 18px;
            margin: 0;
        }

        .game-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .game-category {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-card);
        }

        .game-category:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-glow);
        }

        .game-icon {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .game-category h4 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .game-category p {
            font-size: 15px;
            color: var(--text-secondary);
            margin: 0;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .advantage-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-card);
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-glow);
            border-color: rgba(102, 126, 234, 0.5);
        }

        .advantage-card h3 {
            font-size: 26px;
            margin-bottom: 20px;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .advantage-card p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

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

        .faq-item {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

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

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question::after {
            content: '+';
            font-size: 28px;
            font-weight: 300;
            color: var(--accent-color);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 30px;
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
            padding: 0 30px 25px;
        }

        .faq-answer p {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .final-cta {
            padding: 100px 0;
            background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.2), transparent 70%);
        }

        .cta-box {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 80px 60px;
            text-align: center;
            box-shadow: var(--shadow-glow);
        }

        .cta-box h2 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .cta-box p {
            font-size: 22px;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

        .footer {
            background: rgba(10, 14, 39, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 60px 0 30px;
        }

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

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            list-style: none;
            margin-bottom: 40px;
            padding: 0;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s ease;
        }

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

        .footer-info p {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .footer-license {
            font-weight: 600;
            color: var(--text-primary);
        }

        @media (max-width: 991px) {
            .nav-list {
                gap: 20px;
            }

            .header-cta {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .hamburger {
                display: flex;
                order: 2;
                margin-left: auto;
            }

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

            .header-nav {
                order: 3;
                width: 100%;
            }

            .nav-list {
                position: fixed;
                top: 200px;
                left: 0;
                width: 100%;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-list.active {
                transform: translateX(0);
            }

            .nav-list li {
                width: 100%;
                text-align: center;
            }

            .nav-list a {
                display: block;
                padding: 15px;
                font-size: 18px;
            }

            .header-cta {
                display: block;
                width: 100%;
                margin-top: 20px;
            }

            .header-cta .cta-button {
                width: 100%;
                display: block;
            }

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

            .hero h1 {
                font-size: 36px;
                letter-spacing: -0.5px;
            }

            .hero-description {
                font-size: 17px;
            }

            h2 {
                font-size: 32px;
            }

            h3 {
                font-size: 24px;
            }

            h4 {
                font-size: 20px;
            }

            section {
                padding: 60px 0;
            }

            .table-wrapper {
                padding: 20px;
            }

            table {
                font-size: 14px;
            }

            table th,
            table td {
                padding: 12px 10px;
            }

            .bonus-cards,
            .game-categories,
            .advantages-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .cta-box {
                padding: 50px 30px;
            }

            .cta-box h2 {
                font-size: 32px;
            }

            .cta-box p {
                font-size: 18px;
            }

            .footer-links {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 28px;
            }

            .cta-button {
                padding: 12px 24px;
                font-size: 14px;
            }

            p {
                font-size: 16px;
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            }
            50% {
                box-shadow: 0 10px 50px rgba(102, 126, 234, 0.7);
            }
        }

        .cta-button {
            animation: pulse 2s infinite;
        }

        .cta-button:hover {
            animation: none;
        }
    

@media (max-width: 991px) {
            .hero h1 {
                font-size: 48px;
            }

            h2 {
                font-size: 40px;
            }

            h3 {
                font-size: 28px;
            }

            .nav-list {
                gap: 20px;
            }

            .header-cta {
                display: none;
            }
        }

@media (max-width: 767px) {
            .hamburger {
                display: flex;
                order: 2;
                margin-left: auto;
            }

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

            .header-nav {
                order: 3;
                width: 100%;
            }

            .nav-list {
                position: fixed;
                top: 200px;
                left: 0;
                width: 100%;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-list.active {
                transform: translateX(0);
            }

            .nav-list li {
                width: 100%;
                text-align: center;
            }

            .nav-list a {
                display: block;
                padding: 15px;
                font-size: 18px;
            }

            .header-cta {
                display: block;
                width: 100%;
                margin-top: 20px;
            }

            .header-cta .cta-button {
                width: 100%;
                display: block;
            }

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

            .hero h1 {
                font-size: 36px;
                letter-spacing: -0.5px;
            }

            .hero-description {
                font-size: 17px;
            }

            h2 {
                font-size: 32px;
            }

            h3 {
                font-size: 24px;
            }

            h4 {
                font-size: 20px;
            }

            section {
                padding: 60px 0;
            }

            .table-wrapper {
                padding: 20px;
            }

            table {
                font-size: 14px;
            }

            table th,
            table td {
                padding: 12px 10px;
            }

            .bonus-cards,
            .game-categories,
            .advantages-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .cta-box {
                padding: 50px 30px;
            }

            .cta-box h2 {
                font-size: 32px;
            }

            .cta-box p {
                font-size: 18px;
            }

            .footer-links {
                flex-direction: column;
                gap: 20px;
            }
        }

@media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }

            h2 {
                font-size: 28px;
            }

            .cta-button {
                padding: 12px 24px;
                font-size: 14px;
            }

            p {
                font-size: 16px;
            }
        }