 :root {
            --neon-blue: #0ff0fc;
            --neon-purple: #bc13fe;
            --dark-bg: #0a0a1a;
            --darker-bg: #050510;
            --card-bg: rgba(10, 15, 35, 0.8);
            --text-color: #f0f0f0;
            --text-secondary: #b0b0c0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header styles */
        header {
            background-color: rgba(5, 5, 16, 0.95);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 0 15px rgba(11, 255, 251, 0.3);
            border-bottom: 1px solid var(--neon-blue);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-shadow: 0 0 10px var(--neon-blue);
        }

        .logo i {
            color: var(--neon-purple);
        }

        .logo span {
            color: var(--neon-blue);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 8px var(--neon-blue);
            background-color: rgba(15, 240, 252, 0.1);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero banner */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--darker-bg), #0f1a2f);
            z-index: -2;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(15, 240, 252, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 20%, rgba(188, 19, 254, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 0 0 15px var(--neon-blue);
            background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: var(--text-secondary);
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            letter-spacing: 1px;
            box-shadow: 0 0 20px rgba(15, 240, 252, 0.5);
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 30px rgba(15, 240, 252, 0.8);
        }

        /* Casino listings */
        .casinos-section {
            padding: 100px 0;
            background-color: var(--darker-bg);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            text-shadow: 0 0 10px var(--neon-purple);
            color: white;
        }

        .casino-row {
            display: flex;
            background-color: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(15, 240, 252, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .casino-row:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(15, 240, 252, 0.4);
        }

        .casino-logo {
            flex: 0 0 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background-color: rgba(5, 10, 25, 0.9);
        }

        .casino-logo img {
            max-width: 100%;
            max-height: 100px;
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
        }

        .casino-content {
            flex: 1;
            padding: 30px;
        }

        .casino-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .casino-name {
            font-size: 2rem;
            color: white;
            text-shadow: 0 0 5px var(--neon-blue);
        }

        .rating {
            color: #FFD700;
            font-size: 1.2rem;
        }

        .advantages {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }

        .advantage {
            background-color: rgba(15, 240, 252, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
            border: 1px solid rgba(15, 240, 252, 0.3);
        }

        .advantage i {
            color: var(--neon-blue);
        }

        .bonus-button {
            display: inline-block;
            background: linear-gradient(90deg, #ff0080, #ff8c00);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 0 15px rgba(255, 0, 128, 0.5);
            transition: all 0.3s;
        }

        .bonus-button:hover {
            box-shadow: 0 0 25px rgba(255, 0, 128, 0.8);
            transform: scale(1.05);
        }

        /* 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: 2.5rem;
            margin-bottom: 30px;
            color: white;
            text-shadow: 0 0 10px var(--neon-purple);
        }

        .about-content p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        /* FAQ section */
        .faq-section {
            padding: 100px 0;
            background-color: var(--darker-bg);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(15, 240, 252, 0.2);
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background-color: rgba(15, 240, 252, 0.05);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .faq-question:hover {
            background-color: rgba(15, 240, 252, 0.1);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }

        .faq-toggle {
            font-size: 1.5rem;
            color: var(--neon-blue);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        /* Responsible gambling */
        .responsible-gambling {
            padding: 80px 0;
            background-color: var(--dark-bg);
            text-align: center;
            border-top: 2px solid var(--neon-purple);
        }

        .rg-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .rg-icon {
            font-size: 4rem;
            color: #ff3333;
            margin-bottom: 20px;
            text-shadow: 0 0 15px #ff3333;
        }

        .rg-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .rg-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-secondary);
        }

        .rg-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .rg-link {
            display: inline-block;
            background-color: rgba(255, 51, 51, 0.1);
            color: #ff6666;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            border: 1px solid #ff3333;
            transition: all 0.3s;
        }

        .rg-link:hover {
            background-color: rgba(255, 51, 51, 0.2);
            color: white;
        }

        /* Footer */
        footer {
            background-color: #050510;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(15, 240, 252, 0.3);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--neon-blue);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .casino-row {
                flex-direction: column;
            }
            
            .casino-logo {
                flex: 0 0 auto;
                padding: 20px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(5, 5, 16, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 0;
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.3s, opacity 0.3s;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
                border-top: 1px solid var(--neon-blue);
            }
            
            nav ul.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            nav ul li {
                width: 100%;
                text-align: center;
            }
            
            nav a {
                display: block;
                padding: 15px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .casino-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .advantages {
                flex-direction: column;
            }
        }
            :root {
            --neon-blue: #0ff0fc;
            --neon-purple: #bc13fe;
            --dark-bg: #0a0a1a;
            --darker-bg: #050510;
            --card-bg: rgba(10, 15, 35, 0.8);
            --text-color: #f0f0f0;
            --text-secondary: #b0b0c0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header styles */
        header {
            background-color: rgba(5, 5, 16, 0.95);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 0 15px rgba(11, 255, 251, 0.3);
            border-bottom: 1px solid var(--neon-blue);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-shadow: 0 0 10px var(--neon-blue);
        }

        .logo a {
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            color: var(--neon-purple);
        }

        .logo span {
            color: var(--neon-blue);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 8px var(--neon-blue);
            background-color: rgba(15, 240, 252, 0.1);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Policy page styles */
        .policy-hero {
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
            background: linear-gradient(45deg, var(--darker-bg), #0f1a2f);
        }

        .policy-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(15, 240, 252, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 20%, rgba(188, 19, 254, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .policy-hero h1 {
            font-size: 3rem;
            text-shadow: 0 0 15px var(--neon-blue);
            background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .policy-content {
            padding: 80px 0;
            background-color: var(--dark-bg);
        }

        .policy-section {
            margin-bottom: 50px;
            padding: 30px;
            background-color: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(15, 240, 252, 0.2);
        }

        .policy-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
            border-bottom: 2px solid rgba(15, 240, 252, 0.3);
            padding-bottom: 10px;
        }

        .policy-section h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: var(--text-color);
        }

        .policy-section p {
            margin-bottom: 15px;
            color: var(--text-secondary);
        }

        .policy-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .policy-section li {
            margin-bottom: 10px;
            color: var(--text-secondary);
        }

        .policy-section ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .back-button {
            display: inline-block;
            margin-top: 30px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 0 15px rgba(15, 240, 252, 0.5);
            transition: all 0.3s;
        }

        .back-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(15, 240, 252, 0.8);
        }

        /* Footer */
        footer {
            background-color: #050510;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(15, 240, 252, 0.3);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--neon-blue);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(5, 5, 16, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 0;
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.3s, opacity 0.3s;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
                border-top: 1px solid var(--neon-blue);
            }
            
            nav ul.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            nav ul li {
                width: 100%;
                text-align: center;
            }
            
            nav a {
                display: block;
                padding: 15px;
            }
            
            .policy-hero h1 {
                font-size: 2.2rem;
            }
            
            .policy-section {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .policy-hero h1 {
                font-size: 1.8rem;
            }
        }
          :root {
            --neon-blue: #0ff0fc;
            --neon-purple: #bc13fe;
            --dark-bg: #0a0a1a;
            --darker-bg: #050510;
            --card-bg: rgba(10, 15, 35, 0.8);
            --text-color: #f0f0f0;
            --text-secondary: #b0b0c0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header styles */
        header {
            background-color: rgba(5, 5, 16, 0.95);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 0 15px rgba(11, 255, 251, 0.3);
            border-bottom: 1px solid var(--neon-blue);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-shadow: 0 0 10px var(--neon-blue);
        }

        .logo a {
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            color: var(--neon-purple);
        }

        .logo span {
            color: var(--neon-blue);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 8px var(--neon-blue);
            background-color: rgba(15, 240, 252, 0.1);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Policy page styles */
        .policy-hero {
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
            background: linear-gradient(45deg, var(--darker-bg), #0f1a2f);
        }

        .policy-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(15, 240, 252, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 20%, rgba(188, 19, 254, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .policy-hero h1 {
            font-size: 3rem;
            text-shadow: 0 0 15px var(--neon-blue);
            background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .policy-content {
            padding: 80px 0;
            background-color: var(--dark-bg);
        }

        .policy-section {
            margin-bottom: 50px;
            padding: 30px;
            background-color: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(15, 240, 252, 0.2);
        }

        .policy-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
            border-bottom: 2px solid rgba(15, 240, 252, 0.3);
            padding-bottom: 10px;
        }

        .policy-section h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: var(--text-color);
        }

        .policy-section p {
            margin-bottom: 15px;
            color: var(--text-secondary);
        }

        .policy-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .policy-section li {
            margin-bottom: 10px;
            color: var(--text-secondary);
        }

        .back-button {
            display: inline-block;
            margin-top: 30px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 0 15px rgba(15, 240, 252, 0.5);
            transition: all 0.3s;
        }

        .back-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(15, 240, 252, 0.8);
        }

        /* Footer */
        footer {
            background-color: #050510;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(15, 240, 252, 0.3);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--neon-blue);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(5, 5, 16, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 0;
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.3s, opacity 0.3s;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
                border-top: 1px solid var(--neon-blue);
            }
            
            nav ul.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            nav ul li {
                width: 100%;
                text-align: center;
            }
            
            nav a {
                display: block;
                padding: 15px;
            }
            
            .policy-hero h1 {
                font-size: 2.2rem;
            }
            
            .policy-section {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .policy-hero h1 {
                font-size: 1.8rem;
            }
        }
            :root {
            --neon-blue: #0ff0fc;
            --neon-purple: #bc13fe;
            --dark-bg: #0a0a1a;
            --darker-bg: #050510;
            --card-bg: rgba(10, 15, 35, 0.8);
            --text-color: #f0f0f0;
            --text-secondary: #b0b0c0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header styles */
        header {
            background-color: rgba(5, 5, 16, 0.95);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 0 15px rgba(11, 255, 251, 0.3);
            border-bottom: 1px solid var(--neon-blue);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-shadow: 0 0 10px var(--neon-blue);
        }

        .logo a {
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            color: var(--neon-purple);
        }

        .logo span {
            color: var(--neon-blue);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }

        nav a:hover {
            color: var(--neon-blue);
            text-shadow: 0 0 8px var(--neon-blue);
            background-color: rgba(15, 240, 252, 0.1);
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Policy page styles */
        .policy-hero {
            height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
            background: linear-gradient(45deg, var(--darker-bg), #0f1a2f);
        }

        .policy-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(15, 240, 252, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 20%, rgba(188, 19, 254, 0.1) 0%, transparent 50%);
            z-index: -1;
        }

        .policy-hero h1 {
            font-size: 3rem;
            text-shadow: 0 0 15px var(--neon-blue);
            background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .policy-content {
            padding: 80px 0;
            background-color: var(--dark-bg);
        }

        .policy-section {
            margin-bottom: 50px;
            padding: 30px;
            background-color: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(15, 240, 252, 0.2);
        }

        .policy-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
            border-bottom: 2px solid rgba(15, 240, 252, 0.3);
            padding-bottom: 10px;
        }

        .policy-section h3 {
            font-size: 1.5rem;
            margin: 25px 0 15px;
            color: var(--text-color);
        }

        .policy-section p {
            margin-bottom: 15px;
            color: var(--text-secondary);
        }

        .policy-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .policy-section li {
            margin-bottom: 10px;
            color: var(--text-secondary);
        }

        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .cookie-table th, .cookie-table td {
            padding: 15px;
            text-align: left;
            border: 1px solid rgba(15, 240, 252, 0.2);
        }

        .cookie-table th {
            background-color: rgba(15, 240, 252, 0.1);
            color: var(--neon-blue);
            font-weight: 600;
        }

        .cookie-table tr:nth-child(even) {
            background-color: rgba(15, 240, 252, 0.05);
        }

        .cookie-type {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-right: 5px;
        }

        .necessary {
            background-color: rgba(0, 128, 0, 0.2);
            color: #90ee90;
        }

        .preferences {
            background-color: rgba(255, 165, 0, 0.2);
            color: #ffcc80;
        }

        .analytics {
            background-color: rgba(0, 0, 255, 0.2);
            color: #a0a0ff;
        }

        .marketing {
            background-color: rgba(255, 0, 0, 0.2);
            color: #ff8080;
        }

        .cookie-controls {
            background-color: rgba(15, 240, 252, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid rgba(15, 240, 252, 0.3);
        }

        .cookie-controls h3 {
            margin-top: 0;
        }

        .cookie-btn {
            display: inline-block;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            margin-right: 10px;
            margin-bottom: 10px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cookie-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 15px rgba(15, 240, 252, 0.5);
        }

        .cookie-btn.secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .back-button {
            display: inline-block;
            margin-top: 30px;
            background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 0 15px rgba(15, 240, 252, 0.5);
            transition: all 0.3s;
        }

        .back-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(15, 240, 252, 0.8);
        }

        /* Footer */
        footer {
            background-color: #050510;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(15, 240, 252, 0.3);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--neon-blue);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--neon-blue);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(5, 5, 16, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 0;
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.3s, opacity 0.3s;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
                border-top: 1px solid var(--neon-blue);
            }
            
            nav ul.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            nav ul li {
                width: 100%;
                text-align: center;
            }
            
            nav a {
                display: block;
                padding: 15px;
            }
            
            .policy-hero h1 {
                font-size: 2.2rem;
            }
            
            .policy-section {
                padding: 20px;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
        }

        @media (max-width: 576px) {
            .policy-hero h1 {
                font-size: 1.8rem;
            }
            
            .cookie-table th, .cookie-table td {
                padding: 10px 5px;
                font-size: 0.9rem;
            }
        }