  :root {
            --neon-red: #ff003c;
            --bright-yellow: #ffde00;
            --dark-bg: #0a0a0f;
            --card-bg: #12121a;
            --text-light: #f0f0f0;
            --text-gray: #aaa;
            --neon-red-glow: 0 0 10px rgba(255, 0, 60, 0.7), 0 0 20px rgba(255, 0, 60, 0.5), 0 0 30px rgba(255, 0, 60, 0.3);
            --yellow-glow: 0 0 10px rgba(255, 222, 0, 0.7), 0 0 20px rgba(255, 222, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            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;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(90deg, var(--neon-red), #ff3366);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--neon-red-glow);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(255, 0, 60, 0.8), 0 0 30px rgba(255, 0, 60, 0.5);
        }

        .btn-yellow {
            background: linear-gradient(90deg, var(--bright-yellow), #ffea4d);
            color: #333;
            box-shadow: var(--yellow-glow);
        }

        .btn-yellow:hover {
            box-shadow: 0 0 20px rgba(255, 222, 0, 0.8), 0 0 30px rgba(255, 222, 0, 0.5);
        }

        /* Header */
        header {
            background-color: rgba(10, 10, 15, 0.95);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(255, 0, 60, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 28px;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
        }

        .logo span {
            color: var(--bright-yellow);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            font-weight: 600;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--bright-yellow);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--bright-yellow);
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Banner */
        .hero {
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(10, 10, 15, 0.85), rgba(10, 10, 15, 0.9)), url('https://images.unsplash.com/photo-1550592704-6a76f3d5d4ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
            background-size: cover;
            background-position: center;
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 56px;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .hero h1 .highlight {
            color: var(--bright-yellow);
            text-shadow: 0 0 10px rgba(255, 222, 0, 0.7);
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            color: var(--text-gray);
        }

        /* Casinos Section */
        .casinos-section {
            padding: 100px 0;
            background-color: var(--dark-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 42px;
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            border-radius: 2px;
        }

        .casino-row {
            display: flex;
            align-items: center;
            background-color: var(--card-bg);
            border-radius: 15px;
            margin-bottom: 40px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 0, 60, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .casino-row:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), var(--neon-red-glow);
        }

        .casino-logo {
            flex: 0 0 200px;
            text-align: center;
        }

        .casino-logo img {
            max-width: 180px;
            max-height: 100px;
            filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
        }

        .casino-info {
            flex: 1;
            padding: 0 30px;
        }

        .casino-info h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--bright-yellow);
        }

        .casino-features {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .casino-feature {
            display: flex;
            align-items: center;
            margin-right: 25px;
            margin-bottom: 10px;
            color: var(--text-gray);
        }

        .casino-feature i {
            color: var(--bright-yellow);
            margin-right: 8px;
            font-size: 18px;
        }

        .casino-action {
            flex: 0 0 200px;
            text-align: center;
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            background-color: var(--card-bg);
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content h2 {
            font-size: 42px;
            margin-bottom: 30px;
            color: var(--bright-yellow);
        }

        .about-content p {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--text-gray);
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background-color: var(--dark-bg);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            background-color: var(--card-bg);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .faq-question {
            padding: 20px 30px;
            font-weight: 700;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(255, 0, 60, 0.05);
            border-left: 4px solid var(--neon-red);
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
            color: var(--text-gray);
        }

        .faq-item.active .faq-answer {
            padding: 20px 30px;
            max-height: 300px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Responsible Gambling */
        .responsible-section {
            padding: 80px 0;
            background-color: var(--card-bg);
            text-align: center;
        }

        .responsible-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .responsible-content h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--bright-yellow);
        }

        .responsible-content p {
            font-size: 18px;
            margin-bottom: 30px;
            color: var(--text-gray);
        }

        .age-warning {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--neon-red);
            color: white;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            font-size: 36px;
            font-weight: 800;
            margin: 20px auto 30px;
            box-shadow: var(--neon-red-glow);
        }

        .responsible-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .responsible-links a {
            display: inline-flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 12px 25px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .responsible-links a:hover {
            background-color: rgba(255, 0, 60, 0.1);
            transform: translateY(-3px);
        }

        .responsible-links a i {
            margin-right: 10px;
            color: var(--bright-yellow);
        }

        /* Footer */
        footer {
            background-color: #07070a;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 0, 60, 0.2);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 0 0 100%;
            text-align: center;
            margin-bottom: 40px;
        }

        .footer-logo .logo {
            font-size: 34px;
        }

        .footer-menu, .footer-legal {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-menu h3, .footer-legal h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-menu h3:after, .footer-legal h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--neon-red);
        }

        .footer-menu ul, .footer-legal ul {
            list-style: none;
        }

        .footer-menu li, .footer-legal li {
            margin-bottom: 12px;
        }

        .footer-menu a, .footer-legal a {
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        .footer-menu a:hover, .footer-legal 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.05);
            color: var(--text-gray);
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .casino-row {
                flex-direction: column;
                text-align: center;
            }
            
            .casino-logo, .casino-info, .casino-action {
                flex: 1;
                width: 100%;
                margin-bottom: 20px;
            }
            
            .casino-info {
                padding: 0;
            }
            
            .casino-features {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: left 0.5s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
                border-top: 1px solid rgba(255, 0, 60, 0.2);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 0 0 30px 0;
            }
            
            .hero h1 {
                font-size: 42px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .section-title h2 {
                font-size: 36px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .casino-info h3 {
                font-size: 24px;
            }
            
            .responsible-links {
                flex-direction: column;
                align-items: center;
            }
        }
          :root {
            --neon-red: #ff003c;
            --bright-yellow: #ffde00;
            --dark-bg: #0a0a0f;
            --card-bg: #12121a;
            --text-light: #f0f0f0;
            --text-gray: #aaa;
            --neon-red-glow: 0 0 10px rgba(255, 0, 60, 0.7), 0 0 20px rgba(255, 0, 60, 0.5), 0 0 30px rgba(255, 0, 60, 0.3);
            --yellow-glow: 0 0 10px rgba(255, 222, 0, 0.7), 0 0 20px rgba(255, 222, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            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;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(90deg, var(--neon-red), #ff3366);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--neon-red-glow);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(255, 0, 60, 0.8), 0 0 30px rgba(255, 0, 60, 0.5);
        }

        /* Header */
        header {
            background-color: rgba(10, 10, 15, 0.95);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(255, 0, 60, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 28px;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
        }

        .logo span {
            color: var(--bright-yellow);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            font-weight: 600;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--bright-yellow);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--bright-yellow);
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 24px;
            cursor: pointer;
        }

        /* Main Content */
        .privacy-hero {
            height: 300px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(10, 10, 15, 0.85), rgba(10, 10, 15, 0.9)), url('https://images.unsplash.com/photo-1550592704-6a76f3d5d4ab?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=30');
            background-size: cover;
            background-position: center;
            margin-top: 70px;
        }

        .privacy-hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .privacy-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
        }

        .privacy-content {
            padding: 80px 0;
            background-color: var(--dark-bg);
        }

        .content-box {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 0, 60, 0.1);
        }

        .content-section {
            margin-bottom: 40px;
        }

        .content-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 0, 60, 0.3);
        }

        .content-section h3 {
            font-size: 22px;
            margin: 25px 0 15px;
            color: var(--bright-yellow);
        }

        .content-section p {
            margin-bottom: 15px;
            color: var(--text-gray);
        }

        .content-section ul, .content-section ol {
            margin-left: 20px;
            margin-bottom: 20px;
            color: var(--text-gray);
        }

        .content-section li {
            margin-bottom: 10px;
        }

        .last-updated {
            background-color: rgba(255, 0, 60, 0.05);
            padding: 20px;
            border-radius: 10px;
            margin-top: 40px;
            border-left: 4px solid var(--neon-red);
        }

        .last-updated p {
            color: var(--text-light);
            font-weight: 600;
        }

        /* Footer */
        footer {
            background-color: #07070a;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 0, 60, 0.2);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 0 0 100%;
            text-align: center;
            margin-bottom: 40px;
        }

        .footer-logo .logo {
            font-size: 34px;
        }

        .footer-menu, .footer-legal {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-menu h3, .footer-legal h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-menu h3:after, .footer-legal h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--neon-red);
        }

        .footer-menu ul, .footer-legal ul {
            list-style: none;
        }

        .footer-menu li, .footer-legal li {
            margin-bottom: 12px;
        }

        .footer-menu a, .footer-legal a {
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        .footer-menu a:hover, .footer-legal 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.05);
            color: var(--text-gray);
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: left 0.5s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
                border-top: 1px solid rgba(255, 0, 60, 0.2);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 0 0 30px 0;
            }
            
            .privacy-hero h1 {
                font-size: 36px;
            }
            
            .content-box {
                padding: 30px 20px;
            }
            
            .content-section h2 {
                font-size: 24px;
            }
            
            .content-section h3 {
                font-size: 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .privacy-hero h1 {
                font-size: 30px;
            }
        }
           :root {
            --neon-red: #ff003c;
            --bright-yellow: #ffde00;
            --dark-bg: #0a0a0f;
            --card-bg: #12121a;
            --text-light: #f0f0f0;
            --text-gray: #aaa;
            --neon-red-glow: 0 0 10px rgba(255, 0, 60, 0.7), 0 0 20px rgba(255, 0, 60, 0.5), 0 0 30px rgba(255, 0, 60, 0.3);
            --yellow-glow: 0 0 10px rgba(255, 222, 0, 0.7), 0 0 20px rgba(255, 222, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            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;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(90deg, var(--neon-red), #ff3366);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--neon-red-glow);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(255, 0, 60, 0.8), 0 0 30px rgba(255, 0, 60, 0.5);
        }

        /* Header */
        header {
            background-color: rgba(10, 10, 15, 0.95);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(255, 0, 60, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 28px;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
        }

        .logo span {
            color: var(--bright-yellow);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            font-weight: 600;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--bright-yellow);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--bright-yellow);
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 24px;
            cursor: pointer;
        }

        /* Main Content */
        .terms-hero {
            height: 300px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(10, 10, 15, 0.85), rgba(10, 10, 15, 0.9)), url('https://images.unsplash.com/photo-1614732414444-096e5f1122d5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=30');
            background-size: cover;
            background-position: center;
            margin-top: 70px;
        }

        .terms-hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .terms-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
        }

        .terms-content {
            padding: 80px 0;
            background-color: var(--dark-bg);
        }

        .content-box {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 0, 60, 0.1);
        }

        .content-section {
            margin-bottom: 40px;
        }

        .content-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 0, 60, 0.3);
        }

        .content-section h3 {
            font-size: 22px;
            margin: 25px 0 15px;
            color: var(--bright-yellow);
        }

        .content-section p {
            margin-bottom: 15px;
            color: var(--text-gray);
        }

        .content-section ul, .content-section ol {
            margin-left: 20px;
            margin-bottom: 20px;
            color: var(--text-gray);
        }

        .content-section li {
            margin-bottom: 10px;
        }

        .warning-box {
            background-color: rgba(255, 0, 60, 0.08);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 4px solid var(--neon-red);
        }

        .warning-box h4 {
            color: var(--bright-yellow);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .last-updated {
            background-color: rgba(255, 0, 60, 0.05);
            padding: 20px;
            border-radius: 10px;
            margin-top: 40px;
            border-left: 4px solid var(--neon-red);
        }

        .last-updated p {
            color: var(--text-light);
            font-weight: 600;
        }

        /* Footer */
        footer {
            background-color: #07070a;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 0, 60, 0.2);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 0 0 100%;
            text-align: center;
            margin-bottom: 40px;
        }

        .footer-logo .logo {
            font-size: 34px;
        }

        .footer-menu, .footer-legal {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-menu h3, .footer-legal h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-menu h3:after, .footer-legal h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--neon-red);
        }

        .footer-menu ul, .footer-legal ul {
            list-style: none;
        }

        .footer-menu li, .footer-legal li {
            margin-bottom: 12px;
        }

        .footer-menu a, .footer-legal a {
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        .footer-menu a:hover, .footer-legal 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.05);
            color: var(--text-gray);
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: left 0.5s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
                border-top: 1px solid rgba(255, 0, 60, 0.2);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 0 0 30px 0;
            }
            
            .terms-hero h1 {
                font-size: 36px;
            }
            
            .content-box {
                padding: 30px 20px;
            }
            
            .content-section h2 {
                font-size: 24px;
            }
            
            .content-section h3 {
                font-size: 20px;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .terms-hero h1 {
                font-size: 30px;
            }
        }
            :root {
            --neon-red: #ff003c;
            --bright-yellow: #ffde00;
            --dark-bg: #0a0a0f;
            --card-bg: #12121a;
            --text-light: #f0f0f0;
            --text-gray: #aaa;
            --neon-red-glow: 0 0 10px rgba(255, 0, 60, 0.7), 0 0 20px rgba(255, 0, 60, 0.5), 0 0 30px rgba(255, 0, 60, 0.3);
            --yellow-glow: 0 0 10px rgba(255, 222, 0, 0.7), 0 0 20px rgba(255, 222, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            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;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(90deg, var(--neon-red), #ff3366);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--neon-red-glow);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 20px rgba(255, 0, 60, 0.8), 0 0 30px rgba(255, 0, 60, 0.5);
        }

        /* Header */
        header {
            background-color: rgba(10, 10, 15, 0.95);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 1px solid rgba(255, 0, 60, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 28px;
            background: linear-gradient(90deg, var(--neon-red), var(--bright-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
        }

        .logo span {
            color: var(--bright-yellow);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            font-weight: 600;
            font-size: 16px;
            position: relative;
            padding: 5px 0;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--bright-yellow);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--bright-yellow);
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 24px;
            cursor: pointer;
        }

        /* Main Content */
        .cookies-hero {
            height: 300px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(10, 10, 15, 0.85), rgba(10, 10, 15, 0.9)), url('ban.ppng');
            background-size: cover;
            background-position: center;
            margin-top: 70px;
        }

        .cookies-hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .cookies-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
        }

        .cookies-content {
            padding: 80px 0;
            background-color: var(--dark-bg);
        }

        .content-box {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 0, 60, 0.1);
        }

        .content-section {
            margin-bottom: 40px;
        }

        .content-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 0, 60, 0.3);
        }

        .content-section h3 {
            font-size: 22px;
            margin: 25px 0 15px;
            color: var(--bright-yellow);
        }

        .content-section p {
            margin-bottom: 15px;
            color: var(--text-gray);
        }

        .content-section ul, .content-section ol {
            margin-left: 20px;
            margin-bottom: 20px;
            color: var(--text-gray);
        }

        .content-section li {
            margin-bottom: 10px;
        }

        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .cookie-table th, .cookie-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cookie-table th {
            background-color: rgba(255, 0, 60, 0.1);
            color: var(--bright-yellow);
            font-weight: 600;
        }

        .cookie-table tr:hover {
            background-color: rgba(255, 255, 255, 0.02);
        }

        .cookie-type {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            margin-right: 8px;
        }

        .cookie-necessary {
            background-color: rgba(255, 0, 60, 0.2);
            color: #ff99b3;
        }

        .cookie-analytics {
            background-color: rgba(255, 222, 0, 0.2);
            color: #ffed99;
        }

        .cookie-functional {
            background-color: rgba(0, 200, 255, 0.2);
            color: #99e6ff;
        }

        .cookie-preferences {
            background-color: rgba(100, 255, 100, 0.2);
            color: #ccffcc;
        }

        .cookie-controls {
            background-color: rgba(255, 0, 60, 0.05);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border-left: 4px solid var(--bright-yellow);
        }

        .cookie-controls h3 {
            color: var(--bright-yellow);
            margin-top: 0;
        }

        .last-updated {
            background-color: rgba(255, 0, 60, 0.05);
            padding: 20px;
            border-radius: 10px;
            margin-top: 40px;
            border-left: 4px solid var(--neon-red);
        }

        .last-updated p {
            color: var(--text-light);
            font-weight: 600;
        }

        /* Footer */
        footer {
            background-color: #07070a;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255, 0, 60, 0.2);
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 0 0 100%;
            text-align: center;
            margin-bottom: 40px;
        }

        .footer-logo .logo {
            font-size: 34px;
        }

        .footer-menu, .footer-legal {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-menu h3, .footer-legal h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-menu h3:after, .footer-legal h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--neon-red);
        }

        .footer-menu ul, .footer-legal ul {
            list-style: none;
        }

        .footer-menu li, .footer-legal li {
            margin-bottom: 12px;
        }

        .footer-menu a, .footer-legal a {
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        .footer-menu a:hover, .footer-legal 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.05);
            color: var(--text-gray);
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: left 0.5s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
                border-top: 1px solid rgba(255, 0, 60, 0.2);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 0 0 30px 0;
            }
            
            .cookies-hero h1 {
                font-size: 36px;
            }
            
            .content-box {
                padding: 30px 20px;
            }
            
            .content-section h2 {
                font-size: 24px;
            }
            
            .content-section h3 {
                font-size: 20px;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
            
            .footer-content {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .cookies-hero h1 {
                font-size: 30px;
            }
        }