/* === BASE STYLES === */:root {
            --primary: #FF2E63;
            --primary-dark: #D91950;
            --secondary: #08D9D6;
            --accent: #FFD23F;
            --dark: #0A0E27;
            --dark-alt: #1A1F3A;
            --light: #FFFFFF;
            --gray: #C7D3DD;
            --gray-dark: #7A8896;
            --gradient-1: linear-gradient(135deg, #FF2E63 0%, #D91950 100%);
            --gradient-2: linear-gradient(135deg, #08D9D6 0%, #06B3B0 100%);
            --gradient-3: linear-gradient(135deg, #FFD23F 0%, #FFAA00 100%);
            --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
            --shadow-sm: 0 2px 8px rgba(255, 46, 99, 0.15);
            --shadow-md: 0 8px 24px rgba(255, 46, 99, 0.25);
            --shadow-lg: 0 16px 48px rgba(255, 46, 99, 0.35);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html, body {
            overflow-x: hidden;
            max-width: 100vw;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--dark);
            color: var(--light);
            line-height: 1.7;
            font-size: 16px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 600;
        }

        h4 {
            font-size: clamp(1.25rem, 2vw, 1.5rem);
            font-weight: 600;
        }

        p {
            margin-bottom: 1rem;
            color: var(--gray);
        }

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

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

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

        .btn {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            padding: 16px 40px;
            border-radius: 50px;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            overflow: hidden;
            display: inline-block;
            text-decoration: none;
        }

        .btn::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:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: var(--light);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--light);
        }

        .cta-button {
            font-family: 'Sora', sans-serif;
            font-weight: 600;
            padding: 16px 40px;
            border-radius: 50px;
            background: var(--gradient-1);
            color: var(--light);
            text-decoration: none;
            display: inline-block;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 1rem;
            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(-2px);
            box-shadow: var(--shadow-lg);
            color: var(--light);
        }

        .card {
            background: var(--dark-alt);
            border: 1px solid rgba(8, 217, 214, 0.2);
            border-radius: 20px;
            padding: 2rem;
            transition: var(--transition);
            height: auto;
        }

        .card:hover {
            transform: translateY(-8px);
            border-color: var(--secondary);
            box-shadow: 0 12px 40px rgba(8, 217, 214, 0.3);
        }

        .content-image {
            max-width: 100%;
            margin: 2rem auto;
            text-align: center;
        }

        .content-image img {
            max-width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        .content-image.portrait img {
            max-height: 350px;
            max-width: 300px;
        }

        .content-image.wide img {
            max-height: 300px;
            max-width: 100%;
        }

        .content-image figcaption {
            margin-top: 1rem;
            font-size: 0.875rem;
            color: var(--gray-dark);
            font-style: italic;
        }

        .table-responsive {
            overflow-x: auto;
            margin: 2rem 0;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--dark-alt);
        }

        table thead {
            background: var(--gradient-1);
        }

        table th {
            padding: 1.25rem;
            text-align: left;
            font-weight: 600;
            color: var(--light);
            border-bottom: 2px solid var(--secondary);
        }

        table td {
            padding: 1rem 1.25rem;
            border-bottom: 1px solid rgba(199, 211, 221, 0.1);
            color: var(--gray);
        }

        table tbody tr {
            transition: var(--transition);
        }

        table tbody tr:hover {
            background: rgba(8, 217, 214, 0.05);
        }

        /* === LAYOUT STYLES === */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(8, 217, 214, 0.2);
            padding: 1rem 0;
        }

        header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .logo img {
            height: 50px;
            width: auto;
            transition: var(--transition);
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        nav {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            color: var(--light);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-size: 0.9rem;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-2);
            transition: var(--transition);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background: var(--light);
            margin: 3px 0;
            transition: var(--transition);
            border-radius: 3px;
        }

        .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(8px, -8px);
        }

        footer {
            background: var(--dark-alt);
            border-top: 1px solid rgba(8, 217, 214, 0.2);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }

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

        .footer-section h3,
        .footer-section h4 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .footer-section p {
            color: var(--gray-dark);
            font-size: 0.9rem;
        }

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

        .footer-nav li {
            margin-bottom: 0.5rem;
        }

        .footer-nav a {
            color: var(--gray);
            font-size: 0.9rem;
        }

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

        .responsible-gaming-logos {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            align-items: center;
        }

        .responsible-gaming-logos img {
            opacity: 0.7;
            transition: var(--transition);
        }

        .responsible-gaming-logos img:hover {
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(199, 211, 221, 0.1);
            padding-top: 1.5rem;
            text-align: center;
        }

        .footer-bottom p {
            color: var(--gray-dark);
            font-size: 0.85rem;
            margin: 0;
        }

        @media (max-width: 767px) {
            header .container {
                flex-wrap: wrap;
            }

            .logo {
                order: 1;
            }

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

            nav {
                order: 4;
                width: 100%;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0;
                gap: 0;
            }

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

            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid rgba(8, 217, 214, 0.1);
            }

            .nav-menu a {
                display: block;
                padding: 1rem 0;
            }

            header .cta-button {
                order: 2;
                padding: 12px 24px;
                font-size: 0.85rem;
                max-width: 200px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

@media (max-width: 767px) {
            header .container {
                flex-wrap: wrap;
            }

            .logo {
                order: 1;
            }

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

            nav {
                order: 4;
                width: 100%;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0;
                gap: 0;
            }

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

            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid rgba(8, 217, 214, 0.1);
            }

            .nav-menu a {
                display: block;
                padding: 1rem 0;
            }

            header .cta-button {
                order: 2;
                padding: 12px 24px;
                font-size: 0.85rem;
                max-width: 200px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }