/* === BASE STYLES === */:root {
            --primary-coral: #fd4558;
            --primary-teal: #ffdc48;
            --accent-yellow: #ffcd34;
            --dark-navy: #000000;
            --text-dark: #ffffff;
            --text-light: #E8E8E8;
            --surface-light: #000000;
            --surface-dark: #181a1f;
            --card-bg: #181a1f;
            --card-bg-secondary: #32353c;
            --button-primary: #ffcd34;
            --button-secondary: #26428f;
            --gradient-primary: linear-gradient(135deg, #ffcd34 0%, #ffdc48 100%);
            --gradient-secondary: linear-gradient(135deg, #26428f 0%, #1a2f66 100%);
            --gradient-accent: linear-gradient(135deg, #fd4558 0%, #ffdc48 100%);
            --shadow-sm: 0 2px 8px rgba(255, 205, 52, 0.15);
            --shadow-md: 0 4px 20px rgba(255, 205, 52, 0.25);
            --shadow-lg: 0 8px 40px rgba(255, 205, 52, 0.35);
        }

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

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--text-dark);
            background: var(--surface-light);
            line-height: 1.7;
            font-size: 16px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

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

        h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            letter-spacing: -0.01em;
        }

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

        h4 {
            font-size: clamp(1.25rem, 2.5vw, 1.75rem);
        }

        p {
            margin-bottom: 1.25rem;
            color: var(--text-dark);
            opacity: 0.9;
        }

        a {
            color: var(--primary-teal);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--primary-coral);
        }

        .container {
            max-width: 1320px;
            padding: 0 1.5rem;
        }

        section {
            padding: 5rem 0;
            position: relative;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-width: 44px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

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

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

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

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

        .btn-secondary {
            background: var(--gradient-secondary);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .cta-button {
            background: var(--gradient-primary);
            color: var(--dark-navy);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-width: 44px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: var(--shadow-md);
        }

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

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            color: var(--dark-navy);
        }

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

        .card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 220, 72, 0.1);
            overflow: hidden;
            position: relative;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-secondary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .content-image {
            width: 100%;
            margin: 1.5rem 0;
        }

        .content-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 12px;
        }

        .content-image.portrait img {
            max-height: 500px;
            object-fit: cover;
        }

        .content-image.wide img {
            max-height: 400px;
            object-fit: cover;
        }

        .content-image figcaption {
            margin-top: 0.5rem;
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 1.5rem 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
        }

        thead {
            background: var(--gradient-secondary);
            color: white;
        }

        th, td {
            padding: 1rem;
            text-align: left;
        }

        tbody tr {
            border-bottom: 1px solid rgba(255, 220, 72, 0.1);
            transition: background 0.3s ease;
        }

        tbody tr:hover {
            background: rgba(255, 220, 72, 0.05);
        }

        ul, ol {
            margin: 1.5rem 0;
            padding-left: 1.5rem;
        }

        li {
            margin-bottom: 0.75rem;
            color: var(--text-dark);
            opacity: 0.9;
        }

        /* === LAYOUT STYLES === */
        .site-header {
            background: var(--dark-navy);
            box-shadow: var(--shadow-sm);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 220, 72, 0.1);
        }

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

        .logo img {
            height: 50px;
            width: auto;
            transition: transform 0.3s ease;
        }

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

        .main-nav {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            max-height: none;
            overflow: visible;
        }

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

        .nav-list a {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-list a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

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

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

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            min-width: 44px;
            min-height: 44px;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: var(--text-dark);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .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(--dark-navy);
            color: var(--text-light);
            padding: 4rem 0 2rem;
        }

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

        .footer-section h3 {
            color: var(--accent-yellow);
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
        }

        .footer-section p {
            color: var(--text-light);
            opacity: 0.8;
        }

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

        .footer-nav a {
            color: var(--text-light);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .footer-nav a:hover {
            color: var(--accent-yellow);
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(232, 232, 232, 0.1);
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            color: var(--text-light);
            opacity: 0.6;
            margin: 0;
        }

        .gaming-logos {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

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

            .nav-list a {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 767px) {
            .site-header {
                padding: 0.75rem 0;
                position: relative;
            }

            .header-content {
                flex-wrap: nowrap;
                gap: 1rem;
                justify-content: space-between;
                align-items: center;
                position: relative;
            }

            .logo {
                flex: 0 0 auto;
                z-index: 2;
            }

            .hamburger {
                display: flex;
                flex: 0 0 auto;
                margin-left: auto;
                z-index: 2;
            }

            .main-nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                flex-direction: column;
                background: var(--dark-navy);
                border-top: 1px solid rgba(255, 220, 72, 0.1);
                z-index: 1;
            }

            .main-nav.active {
                max-height: 700px;
                padding: 1rem 0;
            }

            .nav-list {
                flex-direction: column;
                gap: 0;
                width: 100%;
                padding: 0;
                margin: 0;
            }

            .nav-list li {
                border-bottom: 1px solid rgba(255, 220, 72, 0.1);
            }

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

            .main-nav .cta-button {
                display: block;
                width: calc(100% - 2rem);
                margin: 1.5rem 1rem;
                text-align: center;
                padding: 0.75rem 1.5rem;
                font-size: 0.95rem;
            }
        }

@media (max-width: 575px) {
            .container {
                padding: 0 1rem;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }

            h3 {
                font-size: 1.5rem;
            }

            .btn, .cta-button {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }

            .card {
                padding: 1.5rem;
            }
        }