       :root {
            --neon-pink: #ff00ff;
            --bright-red: #ff0033;
            --dark-bg: #0a0a0a;
            --light-text: #ffffff;
            --gray-bg: #1a1a1a;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--neon-pink);
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--light-text);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--neon-pink);
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
        }

        .logo i {
            margin-right: 10px;
            font-size: 32px;
            color: var(--bright-red);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav ul li a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
            background-color: rgba(255, 0, 255, 0.1);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 24px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('img/ban.png') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            margin-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--light-text);
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
        }

        .hero h1 span {
            color: var(--neon-pink);
        }

        .hero p {
            font-size: 22px;
            margin-bottom: 30px;
            color: #e0e0e0;
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(45deg, var(--neon-pink), var(--bright-red));
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 20px;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
        }

        /* Casinos Section */
        .casinos-section {
            padding: 100px 0;
            background-color: var(--gray-bg);
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 60px;
            color: var(--light-text);
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--neon-pink), var(--bright-red));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .casinos-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .casino-card {
            background-color: rgba(30, 30, 30, 0.9);
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            transition: var(--transition);
            border: 1px solid rgba(255, 0, 255, 0.2);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .casino-card:hover {
            transform: translateY(-10px);
            border-color: var(--neon-pink);
            box-shadow: 0 15px 30px rgba(255, 0, 255, 0.2);
        }

        .casino-logo {
            flex: 0 0 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background-color: rgba(10, 10, 10, 0.7);
        }

        .casino-logo img {
            max-width: 200px;
            max-height: 100px;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
        }

        .casino-content {
            flex: 1;
            padding: 30px;
        }

        .casino-name {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--light-text);
        }

        .casino-advantages {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }

        .advantage {
            background-color: rgba(255, 0, 255, 0.1);
            color: var(--neon-pink);
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .advantage i {
            margin-right: 5px;
        }

        .bonus-btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--neon-pink), var(--bright-red));
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
        }

        .bonus-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(255, 0, 255, 0.5);
        }

        /* 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 p {
            font-size: 18px;
            margin-bottom: 20px;
            color: #cccccc;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background-color: var(--gray-bg);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            background-color: rgba(30, 30, 30, 0.9);
            border: 1px solid rgba(255, 0, 255, 0.1);
        }

        .faq-question {
            padding: 20px;
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--light-text);
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--neon-pink);
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            color: #cccccc;
        }

        .faq-answer p {
            padding-bottom: 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Responsible Gambling */
        .rg-section {
            padding: 80px 0;
            background-color: var(--dark-bg);
            text-align: center;
        }

        .rg-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .rg-icon {
            font-size: 60px;
            color: var(--bright-red);
            margin-bottom: 20px;
        }

        .rg-content h3 {
            font-size: 32px;
            margin-bottom: 20px;
            color: var(--light-text);
        }

        .rg-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .rg-link {
            background-color: rgba(255, 0, 255, 0.1);
            color: var(--neon-pink);
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .rg-link:hover {
            background-color: rgba(255, 0, 255, 0.2);
            transform: translateY(-5px);
        }

        /* Footer */
        footer {
            background-color: #080808;
            padding: 60px 0 30px;
            border-top: 2px solid var(--neon-pink);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 0 0 300px;
            margin-bottom: 30px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--neon-pink);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--bright-red);
            bottom: 0;
            left: 0;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #cccccc;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column ul li a:hover {
            color: var(--neon-pink);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888888;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .casino-card {
                flex-direction: column;
            }
            
            .casino-logo {
                flex: 0 0 auto;
                padding: 20px;
            }
            
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
            }
            
            nav ul li a {
                display: block;
                padding: 15px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 30px;
            }
            
            .section-title {
                font-size: 28px;
            }
        }
       :root {
            --neon-pink: #ff00ff;
            --bright-red: #ff0033;
            --dark-bg: #0a0a0a;
            --light-text: #ffffff;
            --gray-bg: #1a1a1a;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--neon-pink);
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--light-text);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--neon-pink);
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
        }

        .logo i {
            margin-right: 10px;
            font-size: 32px;
            color: var(--bright-red);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav ul li a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
            background-color: rgba(255, 0, 255, 0.1);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 24px;
            cursor: pointer;
        }

        /* Page Content */
        .policy-page {
            padding: 150px 0 80px;
            min-height: 100vh;
        }

        .page-title {
            text-align: center;
            font-size: 42px;
            margin-bottom: 40px;
            color: var(--light-text);
            position: relative;
        }

        .page-title:after {
            content: '';
            position: absolute;
            width: 120px;
            height: 4px;
            background: linear-gradient(to right, var(--neon-pink), var(--bright-red));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .policy-content {
            background-color: rgba(30, 30, 30, 0.7);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid rgba(255, 0, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .policy-section {
            margin-bottom: 40px;
        }

        .policy-section h2 {
            color: var(--neon-pink);
            font-size: 28px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 0, 255, 0.3);
        }

        .policy-section h3 {
            color: #cccccc;
            font-size: 22px;
            margin: 25px 0 15px;
        }

        .policy-section p {
            margin-bottom: 15px;
            color: #bbbbbb;
            font-size: 17px;
            line-height: 1.8;
        }

        .policy-section ul, .policy-section ol {
            margin: 15px 0 15px 30px;
            color: #bbbbbb;
        }

        .policy-section li {
            margin-bottom: 10px;
            font-size: 17px;
        }

        .last-updated {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888888;
            font-style: italic;
        }

        /* Footer */
        footer {
            background-color: #080808;
            padding: 60px 0 30px;
            border-top: 2px solid var(--neon-pink);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 0 0 300px;
            margin-bottom: 30px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--neon-pink);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--bright-red);
            bottom: 0;
            left: 0;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #cccccc;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column ul li a:hover {
            color: var(--neon-pink);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888888;
            font-size: 14px;
        }

        .back-btn {
            display: inline-block;
            margin-top: 30px;
            color: var(--neon-pink);
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
        }

        .back-btn:hover {
            color: var(--bright-red);
        }

        /* Responsive */
        @media (max-width: 992px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
            }
            
            nav ul li a {
                display: block;
                padding: 15px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .policy-content {
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 32px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 30px;
            }
            
            .policy-section h2 {
                font-size: 24px;
            }
        }
             :root {
            --neon-pink: #ff00ff;
            --bright-red: #ff0033;
            --dark-bg: #0a0a0a;
            --light-text: #ffffff;
            --gray-bg: #1a1a1a;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--neon-pink);
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--light-text);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--neon-pink);
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
        }

        .logo i {
            margin-right: 10px;
            font-size: 32px;
            color: var(--bright-red);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav ul li a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
            background-color: rgba(255, 0, 255, 0.1);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 24px;
            cursor: pointer;
        }

        /* Page Content */
        .terms-page {
            padding: 150px 0 80px;
            min-height: 100vh;
        }

        .page-title {
            text-align: center;
            font-size: 42px;
            margin-bottom: 40px;
            color: var(--light-text);
            position: relative;
        }

        .page-title:after {
            content: '';
            position: absolute;
            width: 120px;
            height: 4px;
            background: linear-gradient(to right, var(--neon-pink), var(--bright-red));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .terms-content {
            background-color: rgba(30, 30, 30, 0.7);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid rgba(255, 0, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .terms-section {
            margin-bottom: 40px;
        }

        .terms-section h2 {
            color: var(--neon-pink);
            font-size: 28px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 0, 255, 0.3);
        }

        .terms-section h3 {
            color: #cccccc;
            font-size: 22px;
            margin: 25px 0 15px;
        }

        .terms-section p {
            margin-bottom: 15px;
            color: #bbbbbb;
            font-size: 17px;
            line-height: 1.8;
        }

        .terms-section ul, .terms-section ol {
            margin: 15px 0 15px 30px;
            color: #bbbbbb;
        }

        .terms-section li {
            margin-bottom: 10px;
            font-size: 17px;
        }

        .warning-box {
            background-color: rgba(255, 0, 51, 0.1);
            border-left: 4px solid var(--bright-red);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        .info-box {
            background-color: rgba(255, 0, 255, 0.1);
            border-left: 4px solid var(--neon-pink);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        .last-updated {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888888;
            font-style: italic;
        }

        /* Footer */
        footer {
            background-color: #080808;
            padding: 60px 0 30px;
            border-top: 2px solid var(--neon-pink);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 0 0 300px;
            margin-bottom: 30px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--neon-pink);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--bright-red);
            bottom: 0;
            left: 0;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #cccccc;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column ul li a:hover {
            color: var(--neon-pink);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888888;
            font-size: 14px;
        }

        .back-btn {
            display: inline-block;
            margin-top: 30px;
            color: var(--neon-pink);
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
        }

        .back-btn:hover {
            color: var(--bright-red);
        }

        /* Responsive */
        @media (max-width: 992px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
            }
            
            nav ul li a {
                display: block;
                padding: 15px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .terms-content {
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 32px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 30px;
            }
            
            .terms-section h2 {
                font-size: 24px;
            }
        }
            :root {
            --neon-pink: #ff00ff;
            --bright-red: #ff0033;
            --dark-bg: #0a0a0a;
            --light-text: #ffffff;
            --gray-bg: #1a1a1a;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--neon-pink);
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.2);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--light-text);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--neon-pink);
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
        }

        .logo i {
            margin-right: 10px;
            font-size: 32px;
            color: var(--bright-red);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav ul li a:hover {
            color: var(--neon-pink);
            text-shadow: 0 0 10px rgba(255, 0, 255, 0.7);
            background-color: rgba(255, 0, 255, 0.1);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 24px;
            cursor: pointer;
        }

        /* Page Content */
        .cookies-page {
            padding: 150px 0 80px;
            min-height: 100vh;
        }

        .page-title {
            text-align: center;
            font-size: 42px;
            margin-bottom: 40px;
            color: var(--light-text);
            position: relative;
        }

        .page-title:after {
            content: '';
            position: absolute;
            width: 120px;
            height: 4px;
            background: linear-gradient(to right, var(--neon-pink), var(--bright-red));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .cookies-content {
            background-color: rgba(30, 30, 30, 0.7);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid rgba(255, 0, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .cookies-section {
            margin-bottom: 40px;
        }

        .cookies-section h2 {
            color: var(--neon-pink);
            font-size: 28px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255, 0, 255, 0.3);
        }

        .cookies-section h3 {
            color: #cccccc;
            font-size: 22px;
            margin: 25px 0 15px;
        }

        .cookies-section p {
            margin-bottom: 15px;
            color: #bbbbbb;
            font-size: 17px;
            line-height: 1.8;
        }

        .cookies-section ul, .cookies-section ol {
            margin: 15px 0 15px 30px;
            color: #bbbbbb;
        }

        .cookies-section li {
            margin-bottom: 10px;
            font-size: 17px;
        }

        .table-container {
            overflow-x: auto;
            margin: 25px 0;
        }

        .cookies-table {
            width: 100%;
            border-collapse: collapse;
            background-color: rgba(40, 40, 40, 0.7);
        }

        .cookies-table th {
            background-color: rgba(255, 0, 255, 0.2);
            color: var(--light-text);
            text-align: left;
            padding: 15px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cookies-table td {
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbbbbb;
        }

        .cookies-table tr:nth-child(even) {
            background-color: rgba(50, 50, 50, 0.5);
        }

        .cookie-type {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            margin-right: 10px;
        }

        .essential {
            background-color: rgba(0, 255, 0, 0.2);
            color: #00ff00;
        }

        .functional {
            background-color: rgba(0, 150, 255, 0.2);
            color: #0096ff;
        }

        .analytics {
            background-color: rgba(255, 165, 0, 0.2);
            color: #ffa500;
        }

        .marketing {
            background-color: rgba(255, 0, 255, 0.2);
            color: var(--neon-pink);
        }

        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(20, 20, 20, 0.95);
            padding: 20px;
            border-top: 2px solid var(--neon-pink);
            z-index: 1000;
            display: none;
        }

        .cookie-banner-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .cookie-banner p {
            flex: 1;
            min-width: 300px;
            margin: 0;
        }

        .cookie-buttons {
            display: flex;
            gap: 15px;
        }

        .cookie-btn {
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 16px;
        }

        .accept-btn {
            background: linear-gradient(45deg, var(--neon-pink), var(--bright-red));
            color: white;
        }

        .settings-btn {
            background-color: transparent;
            color: var(--neon-pink);
            border: 2px solid var(--neon-pink);
        }

        .cookie-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
        }

        .last-updated {
            text-align: center;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888888;
            font-style: italic;
        }

        /* Footer */
        footer {
            background-color: #080808;
            padding: 60px 0 30px;
            border-top: 2px solid var(--neon-pink);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .footer-logo {
            flex: 0 0 300px;
            margin-bottom: 30px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-column h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--neon-pink);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--bright-red);
            bottom: 0;
            left: 0;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #cccccc;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column ul li a:hover {
            color: var(--neon-pink);
            padding-left: 5px;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #888888;
            font-size: 14px;
        }

        .back-btn {
            display: inline-block;
            margin-top: 30px;
            color: var(--neon-pink);
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
        }

        .back-btn:hover {
            color: var(--bright-red);
        }

        /* Responsive */
        @media (max-width: 992px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
            }
            
            nav ul li a {
                display: block;
                padding: 15px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .cookies-content {
                padding: 30px 20px;
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 32px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 30px;
            }
            
            .cookies-section h2 {
                font-size: 24px;
            }
            
            .cookie-banner-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-buttons {
                width: 100%;
                justify-content: center;
            }
        }