  :root {
            --neon-red: #ff003c;
            --bright-yellow: #ffcc00;
            --dark-bg: #0a0a0f;
            --darker-bg: #050508;
            --light-text: #f5f5f7;
            --gray-text: #a1a1a6;
            --card-bg: #141420;
            --footer-bg: #050505;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 10, 15, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--neon-red);
            box-shadow: 0 5px 20px rgba(255, 0, 60, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            margin-right: 10px;
            font-size: 32px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            font-weight: 600;
            font-size: 16px;
            padding: 8px 0;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--bright-yellow);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-red);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        
        /* Hero Banner */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(5, 5, 8, 0.85), rgba(10, 10, 15, 0.9)), 
                        url('img/ban.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero h1 span {
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            color: var(--gray-text);
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(90deg, var(--neon-red), #ff3355);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(255, 0, 60, 0.3);
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 0, 60, 0.5);
        }
        
        /* Casino List */
        .casinos-section {
            padding: 100px 0;
            background-color: var(--darker-bg);
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 60px;
        }
        
        .section-title span {
            color: var(--neon-red);
        }
        
        .casino-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .casino-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 0, 60, 0.1);
            transition: all 0.3s ease;
        }
        
        .casino-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 0, 60, 0.2);
            border-color: rgba(255, 0, 60, 0.3);
        }
        
        .casino-logo {
            flex: 0 0 250px;
            background-color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }
        
        .casino-logo img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
        }
        
        .casino-content {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
        }
        
        .casino-name {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--bright-yellow);
        }
        
        .advantages {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .advantage {
            background-color: rgba(255, 204, 0, 0.1);
            color: var(--bright-yellow);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .advantage i {
            margin-right: 8px;
            font-size: 12px;
        }
        
        .bonus-button {
            align-self: flex-start;
            background: linear-gradient(90deg, var(--bright-yellow), #ffd633);
            color: #000;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            margin-top: auto;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .bonus-button:hover {
            background: linear-gradient(90deg, #ffd633, var(--bright-yellow));
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
        }
        
        .bonus-button i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .bonus-button:hover i {
            transform: translateX(5px);
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background-color: var(--dark-bg);
        }
        
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .about-content h2 {
            font-size: 36px;
            margin-bottom: 30px;
        }
        
        .about-content h2 span {
            color: var(--neon-red);
        }
        
        .about-content p {
            font-size: 18px;
            margin-bottom: 25px;
            color: var(--gray-text);
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background-color: var(--darker-bg);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: var(--card-bg);
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            border-left: 4px solid var(--neon-red);
        }
        
        .faq-question {
            padding: 20px 25px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: var(--gray-text);
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 25px 20px;
        }
        
        /* Responsible Gambling */
        .responsible-gambling {
            padding: 80px 0;
            background-color: var(--dark-bg);
            text-align: center;
            border-top: 2px solid rgba(255, 0, 60, 0.2);
        }
        
        .rg-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .rg-title {
            font-size: 32px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .rg-icon {
            font-size: 40px;
            color: var(--neon-red);
        }
        
        .rg-text {
            font-size: 18px;
            margin-bottom: 40px;
            color: var(--gray-text);
        }
        
        .rg-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .rg-link {
            background-color: var(--card-bg);
            padding: 15px 25px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .rg-link:hover {
            background-color: rgba(255, 0, 60, 0.1);
            transform: translateY(-5px);
        }
        
        /* Footer */
        footer {
            background-color: var(--footer-bg);
            padding: 60px 0 30px;
            border-top: 2px solid var(--neon-red);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links li a:hover {
            color: var(--bright-yellow);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray-text);
            font-size: 14px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .casino-card {
                flex-direction: column;
            }
            
            .casino-logo {
                flex: 0 0 auto;
                padding: 20px;
            }
            
            .hero h1 {
                font-size: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--darker-bg);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
                border-bottom: 2px solid var(--neon-red);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 20px 0;
            }
            
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .cta-button {
                padding: 14px 30px;
                font-size: 16px;
            }
            
            .advantages {
                gap: 10px;
            }
            
            .advantage {
                font-size: 12px;
                padding: 6px 12px;
            }
            
            .bonus-button {
                width: 100%;
                justify-content: center;
            }
        }
                :root {
            --neon-red: #ff003c;
            --bright-yellow: #ffcc00;
            --dark-bg: #0a0a0f;
            --darker-bg: #050508;
            --light-text: #f5f5f7;
            --gray-text: #a1a1a6;
            --card-bg: #141420;
            --footer-bg: #050505;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 10, 15, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--neon-red);
            box-shadow: 0 5px 20px rgba(255, 0, 60, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            margin-right: 10px;
            font-size: 32px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            font-weight: 600;
            font-size: 16px;
            padding: 8px 0;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--bright-yellow);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-red);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        
        /* Content */
        .policy-hero {
            background: linear-gradient(rgba(5, 5, 8, 0.85), rgba(10, 10, 15, 0.9));
            padding: 140px 0 60px;
            text-align: center;
        }
        
        .policy-hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .policy-hero p {
            font-size: 18px;
            color: var(--gray-text);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .last-updated {
            font-size: 14px;
            color: var(--neon-red);
            margin-top: 10px;
            font-weight: 600;
        }
        
        .policy-content {
            padding: 80px 0;
            background-color: var(--darker-bg);
        }
        
        .policy-section {
            margin-bottom: 50px;
        }
        
        .policy-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            border-left: 4px solid var(--neon-red);
            padding-left: 15px;
        }
        
        .policy-section h3 {
            font-size: 22px;
            margin: 25px 0 15px;
            color: var(--light-text);
        }
        
        .policy-section p {
            margin-bottom: 15px;
            color: var(--gray-text);
        }
        
        .policy-section ul {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        
        .policy-section ul li {
            margin-bottom: 10px;
            color: var(--gray-text);
        }
        
        .highlight-box {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 4px solid var(--bright-yellow);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .contact-info {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            margin-top: 40px;
            border: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .contact-info h3 {
            color: var(--neon-red);
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background-color: var(--footer-bg);
            padding: 60px 0 30px;
            border-top: 2px solid var(--neon-red);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links li a:hover {
            color: var(--bright-yellow);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray-text);
            font-size: 14px;
        }
        
        .back-button {
            display: inline-flex;
            align-items: center;
            background-color: var(--card-bg);
            color: var(--light-text);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 40px;
            transition: all 0.3s ease;
        }
        
        .back-button:hover {
            background-color: rgba(255, 0, 60, 0.2);
            transform: translateX(-5px);
        }
        
        .back-button i {
            margin-right: 8px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--darker-bg);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
                border-bottom: 2px solid var(--neon-red);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 20px 0;
            }
            
            .policy-hero h1 {
                font-size: 32px;
            }
            
            .policy-hero {
                padding: 120px 0 40px;
            }
        }
        
        @media (max-width: 576px) {
            .policy-hero h1 {
                font-size: 28px;
            }
            
            .policy-section h2 {
                font-size: 24px;
            }
            
            .policy-section h3 {
                font-size: 20px;
            }
        }

         :root {
            --neon-red: #ff003c;
            --bright-yellow: #ffcc00;
            --dark-bg: #0a0a0f;
            --darker-bg: #050508;
            --light-text: #f5f5f7;
            --gray-text: #a1a1a6;
            --card-bg: #141420;
            --footer-bg: #050505;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 10, 15, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--neon-red);
            box-shadow: 0 5px 20px rgba(255, 0, 60, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            margin-right: 10px;
            font-size: 32px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            font-weight: 600;
            font-size: 16px;
            padding: 8px 0;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--bright-yellow);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-red);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        
        /* Content */
        .terms-hero {
            background: linear-gradient(rgba(5, 5, 8, 0.85), rgba(10, 10, 15, 0.9));
            padding: 140px 0 60px;
            text-align: center;
        }
        
        .terms-hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .terms-hero p {
            font-size: 18px;
            color: var(--gray-text);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .last-updated {
            font-size: 14px;
            color: var(--neon-red);
            margin-top: 10px;
            font-weight: 600;
        }
        
        .terms-content {
            padding: 80px 0;
            background-color: var(--darker-bg);
        }
        
        .terms-section {
            margin-bottom: 50px;
        }
        
        .terms-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            border-left: 4px solid var(--neon-red);
            padding-left: 15px;
        }
        
        .terms-section h3 {
            font-size: 22px;
            margin: 25px 0 15px;
            color: var(--light-text);
        }
        
        .terms-section p {
            margin-bottom: 15px;
            color: var(--gray-text);
        }
        
        .terms-section ul, .terms-section ol {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        
        .terms-section ul li, .terms-section ol li {
            margin-bottom: 10px;
            color: var(--gray-text);
        }
        
        .warning-box {
            background-color: rgba(255, 0, 60, 0.1);
            border-left: 4px solid var(--neon-red);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .note-box {
            background-color: rgba(255, 204, 0, 0.1);
            border-left: 4px solid var(--bright-yellow);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .age-restriction {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid rgba(255, 0, 60, 0.2);
            text-align: center;
        }
        
        .age-restriction i {
            font-size: 48px;
            color: var(--neon-red);
            margin-bottom: 15px;
        }
        
        .age-restriction h3 {
            color: var(--neon-red);
            font-size: 28px;
        }
        
        /* Footer */
        footer {
            background-color: var(--footer-bg);
            padding: 60px 0 30px;
            border-top: 2px solid var(--neon-red);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links li a:hover {
            color: var(--bright-yellow);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray-text);
            font-size: 14px;
        }
        
        .back-button {
            display: inline-flex;
            align-items: center;
            background-color: var(--card-bg);
            color: var(--light-text);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 40px;
            transition: all 0.3s ease;
        }
        
        .back-button:hover {
            background-color: rgba(255, 0, 60, 0.2);
            transform: translateX(-5px);
        }
        
        .back-button i {
            margin-right: 8px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--darker-bg);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
                border-bottom: 2px solid var(--neon-red);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 20px 0;
            }
            
            .terms-hero h1 {
                font-size: 32px;
            }
            
            .terms-hero {
                padding: 120px 0 40px;
            }
        }
        
        @media (max-width: 576px) {
            .terms-hero h1 {
                font-size: 28px;
            }
            
            .terms-section h2 {
                font-size: 24px;
            }
            
            .terms-section h3 {
                font-size: 20px;
            }
            
            .age-restriction h3 {
                font-size: 24px;
            }
        }
        
 :root {
            --neon-red: #ff003c;
            --bright-yellow: #ffcc00;
            --dark-bg: #0a0a0f;
            --darker-bg: #050508;
            --light-text: #f5f5f7;
            --gray-text: #a1a1a6;
            --card-bg: #141420;
            --footer-bg: #050505;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 10, 15, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 2px solid var(--neon-red);
            box-shadow: 0 5px 20px rgba(255, 0, 60, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
        }
        
        .logo-icon {
            margin-right: 10px;
            font-size: 32px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            font-weight: 600;
            font-size: 16px;
            padding: 8px 0;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--bright-yellow);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--neon-red);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            color: var(--light-text);
            cursor: pointer;
        }
        
        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--card-bg);
            padding: 20px;
            border-top: 2px solid var(--bright-yellow);
            z-index: 9999;
            display: none;
        }
        
        .cookie-banner.active {
            display: block;
        }
        
        .cookie-banner-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .cookie-banner-text {
            flex: 1;
            min-width: 300px;
            margin-right: 20px;
        }
        
        .cookie-banner-text p {
            margin-bottom: 10px;
        }
        
        .cookie-banner-text a {
            color: var(--bright-yellow);
        }
        
        .cookie-banner-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }
        
        .cookie-accept {
            background-color: var(--bright-yellow);
            color: #000;
        }
        
        .cookie-accept:hover {
            background-color: #ffd633;
        }
        
        .cookie-settings {
            background-color: transparent;
            color: var(--light-text);
            border: 2px solid var(--neon-red);
        }
        
        .cookie-settings:hover {
            background-color: rgba(255, 0, 60, 0.1);
        }
        
        /* Content */
        .cookies-hero {
            background: linear-gradient(rgba(5, 5, 8, 0.85), rgba(10, 10, 15, 0.9));
            padding: 140px 0 60px;
            text-align: center;
        }
        
        .cookies-hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .cookies-hero p {
            font-size: 18px;
            color: var(--gray-text);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .last-updated {
            font-size: 14px;
            color: var(--neon-red);
            margin-top: 10px;
            font-weight: 600;
        }
        
        .cookies-content {
            padding: 80px 0;
            background-color: var(--darker-bg);
        }
        
        .cookies-section {
            margin-bottom: 50px;
        }
        
        .cookies-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            border-left: 4px solid var(--neon-red);
            padding-left: 15px;
        }
        
        .cookies-section h3 {
            font-size: 22px;
            margin: 25px 0 15px;
            color: var(--light-text);
        }
        
        .cookies-section p {
            margin-bottom: 15px;
            color: var(--gray-text);
        }
        
        .cookies-section ul {
            margin-left: 25px;
            margin-bottom: 20px;
        }
        
        .cookies-section ul li {
            margin-bottom: 10px;
            color: var(--gray-text);
        }
        
        .cookies-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .cookies-table th, .cookies-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .cookies-table th {
            background-color: rgba(255, 0, 60, 0.1);
            color: var(--bright-yellow);
            font-weight: 600;
        }
        
        .cookies-table tr:last-child td {
            border-bottom: none;
        }
        
        .cookie-type {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 600;
            margin-right: 5px;
        }
        
        .essential {
            background-color: rgba(0, 128, 0, 0.2);
            color: #4CAF50;
        }
        
        .analytics {
            background-color: rgba(33, 150, 243, 0.2);
            color: #2196F3;
        }
        
        .functional {
            background-color: rgba(255, 152, 0, 0.2);
            color: #FF9800;
        }
        
        .cookie-controls {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .cookie-controls h3 {
            color: var(--neon-red);
            margin-bottom: 20px;
        }
        
        .cookie-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
            padding: 15px;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 8px;
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: var(--bright-yellow);
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        .save-preferences {
            background-color: var(--neon-red);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        
        .save-preferences:hover {
            background-color: #ff3355;
        }
        
        /* Footer */
        footer {
            background-color: var(--footer-bg);
            padding: 60px 0 30px;
            border-top: 2px solid var(--neon-red);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links li a:hover {
            color: var(--bright-yellow);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray-text);
            font-size: 14px;
        }
        
        .back-button {
            display: inline-flex;
            align-items: center;
            background-color: var(--card-bg);
            color: var(--light-text);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 40px;
            transition: all 0.3s ease;
        }
        
        .back-button:hover {
            background-color: rgba(255, 0, 60, 0.2);
            transform: translateX(-5px);
        }
        
        .back-button i {
            margin-right: 8px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--darker-bg);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
                border-bottom: 2px solid var(--neon-red);
            }
            
            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0 0 20px 0;
            }
            
            .cookies-hero h1 {
                font-size: 32px;
            }
            
            .cookies-hero {
                padding: 120px 0 40px;
            }
            
            .cookie-banner-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-banner-text {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .cookies-hero h1 {
                font-size: 28px;
            }
            
            .cookies-section h2 {
                font-size: 24px;
            }
            
            .cookies-section h3 {
                font-size: 20px;
            }
            
            .cookies-table {
                display: block;
                overflow-x: auto;
            }
        }