/* === BASE STYLES === */:root {
            --primary: #FF2D55;
            --primary-dark: #E01A43;
            --secondary: #00D9FF;
            --secondary-dark: #00B8D9;
            --accent: #FFD60A;
            --dark: #0A0E27;
            --dark-lighter: #1A1F3A;
            --text: #E8EAED;
            --text-muted: #9BA3B4;
            --gradient-primary: linear-gradient(135deg, #FF2D55 0%, #FF6B6B 100%);
            --gradient-secondary: linear-gradient(135deg, #00D9FF 0%, #00F5FF 100%);
            --gradient-accent: linear-gradient(135deg, #FFD60A 0%, #FFC700 100%);
            --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
            --shadow-sm: 0 2px 8px rgba(255, 45, 85, 0.15);
            --shadow-md: 0 4px 20px rgba(255, 45, 85, 0.25);
            --shadow-lg: 0 8px 40px rgba(255, 45, 85, 0.35);
            --shadow-glow: 0 0 40px rgba(0, 217, 255, 0.4);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .btn {
            font-weight: 600;
            padding: 16px 40px;
            border-radius: 12px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            text-align: center;
            font-size: 16px;
        }

        .btn-primary,
        .btn.btn-primary {
            background: var(--gradient-primary) !important;
            color: #fff !important;
            box-shadow: var(--shadow-md) !important;
            position: relative;
            overflow: hidden;
            border: none !important;
        }

        .btn-primary::before,
        .btn.btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover,
        .btn.btn-primary:hover {
            transform: translateY(-2px) !important;
            box-shadow: var(--shadow-lg) !important;
            color: #fff !important;
            background: var(--gradient-primary) !important;
        }

        .btn-primary:hover::before,
        .btn.btn-primary:hover::before {
            left: 100%;
        }

        .btn-lg,
        .btn.btn-lg {
            padding: 20px 48px !important;
            font-size: 18px !important;
        }

        .card {
            background: var(--dark-lighter);
            border-radius: 20px;
            padding: 32px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(255, 45, 85, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255, 45, 85, 0.3);
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        h1 {
            font-size: clamp(36px, 5vw, 64px);
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font-size: clamp(32px, 4vw, 48px);
            color: var(--secondary);
        }

        h3 {
            font-size: clamp(24px, 3vw, 32px);
            color: var(--text);
        }

        h4 {
            font-size: clamp(20px, 2.5vw, 24px);
            color: var(--text);
        }

        p {
            color: var(--text-muted);
            margin-bottom: 16px;
            font-size: 16px;
        }

        a {
            color: var(--secondary);
            text-decoration: none;
            transition: color 0.3s;
        }

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

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

        /* === LAYOUT STYLES === */
        .site-header {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 45, 85, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 20px 0;
        }

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

        .logo a {
            display: inline-block;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .main-nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .nav-list {
            list-style: none;
            display: flex;
            gap: 32px;
            margin: 0;
            padding: 0;
        }

        .nav-list a {
            color: var(--text);
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
        }

        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .nav-list a:hover {
            color: var(--primary);
        }

        .nav-list a:hover::after {
            transform: scaleX(1);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .hamburger[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger[aria-expanded="true"] span:nth-child(2) {
            opacity: 0;
        }

        .hamburger[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .site-footer {
            background: var(--gradient-dark);
            border-top: 1px solid rgba(255, 45, 85, 0.1);
            padding: 60px 0 30px;
            margin-top: 100px;
        }

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

        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 16px;
            color: var(--primary);
        }

        .footer-section p {
            font-size: 14px;
            line-height: 1.8;
        }

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

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

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

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

        .footer-bottom {
            border-top: 1px solid rgba(255, 45, 85, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 13px;
            margin-bottom: 8px;
        }

        .disclaimer {
            color: var(--accent);
            font-weight: 600;
        }

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

            .nav-list a {
                padding: 8px 12px;
                font-size: 14px;
            }
        }

        @media (max-width: 767px) {
            .site-header {
                padding: 15px 0;
            }

            .header-content {
                flex-wrap: wrap;
                gap: 15px;
            }

            .logo {
                flex: 1;
            }

            .logo img {
                height: 40px;
            }

            .hamburger {
                display: flex;
                order: 2;
            }

            .main-nav {
                order: 3;
                width: 100%;
                flex: none;
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
                background: var(--dark-lighter);
                border-radius: 12px;
                padding: 16px;
                display: none;
            }

            .nav-list.active {
                display: flex;
            }

            .nav-list a {
                padding: 12px;
                display: block;
            }

            .header-content > .btn-primary {
                order: 4;
                width: 100%;
                margin-top: 8px;
            }
        }

@media (max-width: 767px) {
            .site-header {
                padding: 15px 0;
            }

            .header-content {
                flex-wrap: wrap;
                gap: 15px;
            }

            .logo {
                flex: 1;
            }

            .logo img {
                height: 40px;
            }

            .hamburger {
                display: flex;
                order: 2;
            }

            .main-nav {
                order: 3;
                width: 100%;
                flex: none;
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
                background: var(--dark-lighter);
                border-radius: 12px;
                padding: 16px;
                display: none;
            }

            .nav-list.active {
                display: flex;
            }

            .nav-list a {
                padding: 12px;
                display: block;
            }

            .header-content > .btn-primary {
                order: 4;
                width: 100%;
                margin-top: 8px;
            }
        }

@media (max-width: 767px) {
            .hero-section {
                padding: 40px 0;
            }

            .table-of-contents,
            .registration,
            .bonuses,
            .gaming,
            .advantages,
            .payments,
            .security,
            .faq {
                padding: 40px 0;
            }

            .card {
                padding: 24px;
            }

            .bonus-card {
                padding: 24px;
            }

            .timeline-item {
                padding-left: 24px;
            }

            .tabs-nav {
                flex-direction: column;
            }

            .tab-btn {
                width: 100%;
            }

            .payment-table {
                font-size: 14px;
            }

            .payment-table th,
            .payment-table td {
                padding: 12px 8px;
            }

            .feature-item {
                padding: 32px 24px;
            }

            .cta-section {
                padding: 60px 0;
            }

            .cta-section .btn-primary {
                width: 100%;
                padding: 18px 32px;
            }
        }