/* === BASE STYLES === */:root {
            --primary: #FF1744;
            --primary-dark: #D50000;
            --secondary: #00E5FF;
            --accent: #FFEA00;
            --dark: #0A0E27;
            --dark-alt: #151938;
            --surface: #1C2142;
            --surface-light: #252B52;
            --text: #FFFFFF;
            --text-muted: #B0B8D4;
            --gradient-primary: linear-gradient(135deg, #FF1744 0%, #F50057 50%, #C51162 100%);
            --gradient-secondary: linear-gradient(135deg, #00E5FF 0%, #00B8D4 100%);
            --gradient-accent: linear-gradient(135deg, #FFEA00 0%, #FFD600 100%);
            --gradient-dark: linear-gradient(180deg, #0A0E27 0%, #151938 100%);
        }

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

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

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

        h1, h2, h3, h4 {
            font-family: 'Bebas Neue', sans-serif;
            letter-spacing: 1px;
            line-height: 1.2;
            font-weight: 400;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 5rem);
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: var(--text);
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gradient-secondary);
        }

        h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: var(--secondary);
            margin-bottom: 1rem;
        }

        p {
            color: var(--text);
            margin-bottom: 1.2rem;
            font-weight: 300;
        }
        
        .text-muted {
            color: var(--text) !important;
        }

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

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

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

        .btn {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.25rem;
            letter-spacing: 1px;
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            min-width: 44px;
            min-height: 44px;
            display: inline-block;
            text-align: center;
        }

        .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-primary);
            color: var(--text);
            box-shadow: 0 10px 30px rgba(255, 23, 68, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 23, 68, 0.6);
        }

        .btn-secondary {
            background: var(--gradient-secondary);
            color: var(--dark);
            box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 229, 255, 0.5);
        }

        .card {
            background: var(--surface);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

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

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 229, 255, 0.2);
            border-color: var(--secondary);
        }

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

        .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;
            border: 2px solid rgba(0, 229, 255, 0.3);
            box-shadow: 0 10px 40px rgba(0, 229, 255, 0.2);
        }

        .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(--text-muted);
            font-style: italic;
        }

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

        table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--surface);
            border-radius: 12px;
            overflow: hidden;
        }

        thead {
            background: var(--gradient-primary);
        }

        th {
            padding: 1rem;
            text-align: left;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.1rem;
            letter-spacing: 1px;
            color: var(--text);
        }

        td {
            padding: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
        }

        tbody tr {
            transition: all 0.3s ease;
        }

        tbody tr:hover {
            background: var(--surface-light);
        }

        /* === LAYOUT STYLES === */
        header {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 23, 68, 0.3);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

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

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

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

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 10px;
            min-width: 44px;
            min-height: 44px;
            justify-content: center;
            align-items: center;
        }

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

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

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

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

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

        .nav-menu a {
            color: var(--text);
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            padding: 5px 0;
        }

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

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

        header .cta-button {
            max-width: 200px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        footer {
            background: var(--dark-alt);
            border-top: 1px solid rgba(255, 23, 68, 0.3);
            padding: 3rem 0 1.5rem;
            margin-top: 5rem;
        }

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

        .footer-section h4 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .footer-section ul {
            list-style: none;
        }

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

        .footer-section a {
            color: var(--text-muted);
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .age-restriction {
            display: inline-block;
            background: var(--gradient-primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            margin-top: 1rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
            font-size: 0.875rem;
        }

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

            .logo {
                order: 1;
            }

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

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

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                background: var(--surface);
                border-radius: 12px;
                padding: 1rem;
                margin-top: 1rem;
            }

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

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

            .nav-menu li:last-child {
                border-bottom: none;
            }

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

            header .cta-button {
                order: 4;
                width: 100%;
                max-width: 100%;
                margin-top: 1rem;
                text-align: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        
        @media screen and (max-width: 768px) {
            table {
                display: block !important;
                overflow: scroll !important;
            }
        }
        
        .accordion-body {
            padding: 0 1.5rem 0.5rem 1.5rem !important;
        }