   :root {
            --primary-color: #0a0a1a;
            --secondary-color: #121230;
            --accent-color-1: #00f3ff;
            --accent-color-2: #ff00ff;
            --accent-color-3: #ffcc00;
            --text-color: #ffffff;
            --text-muted: #b0b0d0;
            --card-bg: rgba(20, 20, 50, 0.8);
            --shadow-glow: 0 0 15px rgba(0, 243, 255, 0.5);
            --border-radius: 10px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 243, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 20%);
        }
        
        a {
            text-decoration: none;
            color: var(--accent-color-1);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--accent-color-2);
            text-shadow: 0 0 8px var(--accent-color-2);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .logo-icon {
            color: var(--accent-color-1);
            font-size: 2.2rem;
            filter: drop-shadow(0 0 5px var(--accent-color-1));
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            color: var(--text-color);
            font-weight: 500;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        
        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            transition: width 0.3s ease;
        }
        
        nav a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Policy Page Styles */
        .policy-header {
            margin-top: 100px;
            padding: 80px 0 40px;
            text-align: center;
            background-color: rgba(18, 18, 48, 0.5);
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
        }
        
        .policy-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .last-updated {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        
        .policy-content {
            padding: 60px 0;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .policy-section {
            margin-bottom: 50px;
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 243, 255, 0.2);
            box-shadow: var(--shadow-glow);
        }
        
        .policy-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent-color-1);
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(0, 243, 255, 0.3);
        }
        
        .policy-section h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--accent-color-2);
        }
        
        .policy-section p {
            margin-bottom: 15px;
            color: var(--text-muted);
        }
        
        .policy-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
            color: var(--text-muted);
        }
        
        .policy-section li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }
        
        .policy-section li:before {
            content: '•';
            color: var(--accent-color-1);
            font-size: 1.5rem;
            position: absolute;
            left: -15px;
            top: -3px;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }
        
        .cookie-table th, .cookie-table td {
            border: 1px solid rgba(0, 243, 255, 0.3);
            padding: 15px;
            text-align: left;
        }
        
        .cookie-table th {
            background-color: rgba(0, 243, 255, 0.1);
            color: var(--accent-color-1);
            font-weight: 600;
        }
        
        .cookie-table tr:nth-child(even) {
            background-color: rgba(0, 243, 255, 0.05);
        }
        
        .cookie-controls {
            background-color: rgba(0, 243, 255, 0.1);
            padding: 25px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--accent-color-1);
            margin-top: 30px;
        }
        
        .cookie-controls h3 {
            margin-top: 0;
        }
        
        .cookie-btn {
            display: inline-block;
            background-color: var(--card-bg);
            color: var(--text-color);
            border: 1px solid var(--accent-color-1);
            padding: 10px 20px;
            border-radius: var(--border-radius);
            margin-right: 10px;
            margin-top: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .cookie-btn:hover {
            background-color: var(--accent-color-1);
            color: var(--primary-color);
        }
        
        /* Footer */
        footer {
            background-color: #080815;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(0, 243, 255, 0.2);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent-color-1);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Cookie Consent Banner */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--card-bg);
            padding: 20px;
            border-top: 1px solid var(--accent-color-1);
            z-index: 1000;
            display: none;
        }
        
        .cookie-consent.active {
            display: block;
        }
        
        .cookie-consent-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .cookie-consent-text {
            flex: 1;
            min-width: 300px;
        }
        
        .cookie-consent-buttons {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-bottom: 1px solid rgba(0, 243, 255, 0.2);
                z-index: 999;
            }
            
            .mobile-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .mobile-menu ul {
                flex-direction: column;
                gap: 15px;
            }
            
            .mobile-menu a {
                display: block;
                padding: 10px 0;
                font-size: 1.2rem;
            }
            
            .policy-header h1 {
                font-size: 2.2rem;
            }
            
            .policy-section {
                padding: 20px;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
            
            .cookie-consent-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-consent-buttons {
                justify-content: center;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }
           :root {
            --primary-color: #0a0a1a;
            --secondary-color: #121230;
            --accent-color-1: #00f3ff;
            --accent-color-2: #ff00ff;
            --accent-color-3: #ffcc00;
            --text-color: #ffffff;
            --text-muted: #b0b0d0;
            --card-bg: rgba(20, 20, 50, 0.8);
            --shadow-glow: 0 0 15px rgba(0, 243, 255, 0.5);
            --border-radius: 10px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 243, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 20%);
        }
        
        a {
            text-decoration: none;
            color: var(--accent-color-1);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--accent-color-2);
            text-shadow: 0 0 8px var(--accent-color-2);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .logo-icon {
            color: var(--accent-color-1);
            font-size: 2.2rem;
            filter: drop-shadow(0 0 5px var(--accent-color-1));
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            color: var(--text-color);
            font-weight: 500;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        
        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            transition: width 0.3s ease;
        }
        
        nav a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Policy Page Styles */
        .policy-header {
            margin-top: 100px;
            padding: 80px 0 40px;
            text-align: center;
            background-color: rgba(18, 18, 48, 0.5);
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
        }
        
        .policy-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .last-updated {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        
        .policy-content {
            padding: 60px 0;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .policy-section {
            margin-bottom: 50px;
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 243, 255, 0.2);
            box-shadow: var(--shadow-glow);
        }
        
        .policy-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent-color-1);
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(0, 243, 255, 0.3);
        }
        
        .policy-section h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--accent-color-2);
        }
        
        .policy-section p {
            margin-bottom: 15px;
            color: var(--text-muted);
        }
        
        .policy-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
            color: var(--text-muted);
        }
        
        .policy-section li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }
        
        .policy-section li:before {
            content: '•';
            color: var(--accent-color-1);
            font-size: 1.5rem;
            position: absolute;
            left: -15px;
            top: -3px;
        }
        
        .contact-info {
            background-color: rgba(0, 243, 255, 0.1);
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--accent-color-1);
            margin-top: 30px;
        }
        
        /* Footer */
        footer {
            background-color: #080815;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(0, 243, 255, 0.2);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent-color-1);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-bottom: 1px solid rgba(0, 243, 255, 0.2);
                z-index: 999;
            }
            
            .mobile-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .mobile-menu ul {
                flex-direction: column;
                gap: 15px;
            }
            
            .mobile-menu a {
                display: block;
                padding: 10px 0;
                font-size: 1.2rem;
            }
            
            .policy-header h1 {
                font-size: 2.2rem;
            }
            
            .policy-section {
                padding: 20px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }
         :root {
            --primary-color: #0a0a1a;
            --secondary-color: #121230;
            --accent-color-1: #00f3ff;
            --accent-color-2: #ff00ff;
            --accent-color-3: #ffcc00;
            --text-color: #ffffff;
            --text-muted: #b0b0d0;
            --card-bg: rgba(20, 20, 50, 0.8);
            --shadow-glow: 0 0 15px rgba(0, 243, 255, 0.5);
            --border-radius: 10px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 243, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 20%);
        }
        
        a {
            text-decoration: none;
            color: var(--accent-color-1);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--accent-color-2);
            text-shadow: 0 0 8px var(--accent-color-2);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .logo-icon {
            color: var(--accent-color-1);
            font-size: 2.2rem;
            filter: drop-shadow(0 0 5px var(--accent-color-1));
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            color: var(--text-color);
            font-weight: 500;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        
        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            transition: width 0.3s ease;
        }
        
        nav a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Policy Page Styles */
        .policy-header {
            margin-top: 100px;
            padding: 80px 0 40px;
            text-align: center;
            background-color: rgba(18, 18, 48, 0.5);
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
        }
        
        .policy-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .last-updated {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        
        .policy-content {
            padding: 60px 0;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .policy-section {
            margin-bottom: 50px;
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(0, 243, 255, 0.2);
            box-shadow: var(--shadow-glow);
        }
        
        .policy-section h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent-color-1);
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(0, 243, 255, 0.3);
        }
        
        .policy-section h3 {
            font-size: 1.4rem;
            margin: 25px 0 15px;
            color: var(--accent-color-2);
        }
        
        .policy-section p {
            margin-bottom: 15px;
            color: var(--text-muted);
        }
        
        .policy-section ul {
            margin-left: 20px;
            margin-bottom: 20px;
            color: var(--text-muted);
        }
        
        .policy-section li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 10px;
        }
        
        .policy-section li:before {
            content: '•';
            color: var(--accent-color-1);
            font-size: 1.5rem;
            position: absolute;
            left: -15px;
            top: -3px;
        }
        
        .warning-box {
            background-color: rgba(255, 204, 0, 0.1);
            padding: 20px;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--accent-color-3);
            margin: 25px 0;
        }
        
        /* Footer */
        footer {
            background-color: #080815;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(0, 243, 255, 0.2);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent-color-1);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-bottom: 1px solid rgba(0, 243, 255, 0.2);
                z-index: 999;
            }
            
            .mobile-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .mobile-menu ul {
                flex-direction: column;
                gap: 15px;
            }
            
            .mobile-menu a {
                display: block;
                padding: 10px 0;
                font-size: 1.2rem;
            }
            
            .policy-header h1 {
                font-size: 2.2rem;
            }
            
            .policy-section {
                padding: 20px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }
         :root {
            --primary-color: #0a0a1a;
            --secondary-color: #121230;
            --accent-color-1: #00f3ff;
            --accent-color-2: #ff00ff;
            --accent-color-3: #ffcc00;
            --text-color: #ffffff;
            --text-muted: #b0b0d0;
            --card-bg: rgba(20, 20, 50, 0.8);
            --shadow-glow: 0 0 15px rgba(0, 243, 255, 0.5);
            --shadow-glow-pink: 0 0 15px rgba(255, 0, 255, 0.5);
            --border-radius: 10px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 243, 255, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 20%);
        }
        
        a {
            text-decoration: none;
            color: var(--accent-color-1);
            transition: all 0.3s ease;
        }
        
        a:hover {
            color: var(--accent-color-2);
            text-shadow: 0 0 8px var(--accent-color-2);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 243, 255, 0.2);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .logo-icon {
            color: var(--accent-color-1);
            font-size: 2.2rem;
            filter: drop-shadow(0 0 5px var(--accent-color-1));
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            color: var(--text-color);
            font-weight: 500;
            font-size: 1.1rem;
            padding: 8px 0;
            position: relative;
        }
        
        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            transition: width 0.3s ease;
        }
        
        nav a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Banner Styles */
        .banner {
            height: 90vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
        }
        
        .banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(10, 10, 26, 0.85), rgba(10, 10, 26, 0.95)), url('ban.jpeg');
            background-size: cover;
            background-position: center;
            z-index: -1;
        }
        
        .banner-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 1;
        }
        
        .banner h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2), var(--accent-color-3));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        
        .banner p {
            font-size: 1.3rem;
            color: var(--text-muted);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .neon-text {
            text-shadow: 0 0 10px var(--accent-color-1), 0 0 20px var(--accent-color-1);
        }
        
        /* Casino List Styles */
        .casinos-section {
            padding: 100px 0;
            background-color: var(--secondary-color);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .casinos-container {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        
        .casino-card {
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            padding: 30px;
            display: flex;
            align-items: center;
            gap: 40px;
            box-shadow: var(--shadow-glow);
            border: 1px solid rgba(0, 243, 255, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .casino-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 243, 255, 0.3);
        }
        
        .casino-logo {
            flex: 0 0 200px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            border-radius: var(--border-radius);
            padding: 15px;
        }
        
        .casino-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .casino-info {
            flex: 1;
        }
        
        .casino-name {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--accent-color-1);
        }
        
        .casino-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .benefit {
            background-color: rgba(0, 243, 255, 0.1);
            border: 1px solid var(--accent-color-1);
            border-radius: 30px;
            padding: 8px 18px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .benefit i {
            color: var(--accent-color-1);
        }
        
        .bonus-btn {
            display: inline-block;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
            padding: 15px 40px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: var(--shadow-glow);
            transition: all 0.3s ease;
        }
        
        .bonus-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px var(--accent-color-2);
            color: white;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background-color: var(--primary-color);
        }
        
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .about-content p {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background-color: var(--secondary-color);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(0, 243, 255, 0.2);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: rgba(20, 20, 50, 0.5);
            font-weight: 600;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(0, 243, 255, 0.1);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-toggle {
            color: var(--accent-color-1);
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        
        .faq-toggle.active {
            transform: rotate(45deg);
        }
        
        /* Responsible Gambling Section */
        .responsible-section {
            padding: 100px 0;
            background-color: var(--primary-color);
            text-align: center;
        }
        
        .responsible-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .age-limit {
            font-size: 6rem;
            font-weight: 800;
            color: var(--accent-color-3);
            text-shadow: 0 0 20px var(--accent-color-3);
            margin-bottom: 30px;
        }
        
        .responsible-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }
        
        .responsible-link {
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: var(--card-bg);
            padding: 15px 25px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 0, 255, 0.3);
            transition: all 0.3s ease;
        }
        
        .responsible-link:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-glow-pink);
        }
        
        /* Footer */
        footer {
            background-color: #080815;
            padding: 60px 0 30px;
            border-top: 1px solid rgba(0, 243, 255, 0.2);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--accent-color-1), var(--accent-color-2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent-color-1);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column li {
            margin-bottom: 10px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .casino-card {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }
            
            .casino-logo {
                flex: 0 0 auto;
            }
            
            .banner h1 {
                font-size: 2.8rem;
            }
        }
   @media (min-width: 768px) {
       .mobile-menu ul {
           display:none;
       }
   }
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--primary-color);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-bottom: 1px solid rgba(0, 243, 255, 0.2);
                z-index: 999;
            }
            
            .mobile-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .mobile-menu ul {
                display: block;
                flex-direction: column;
                gap: 15px;
            }
            
            .mobile-menu a {
                display: block;
                padding: 10px 0;
                font-size: 1.2rem;
            }
            
            .banner h1 {
                font-size: 2.2rem;
            }
            
            .banner p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .casino-name {
                font-size: 1.8rem;
            }
            
            .age-limit {
                font-size: 4rem;
            }
        }
        
        @media (max-width: 576px) {
            .benefit {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
            
            .bonus-btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .responsible-links {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 30px;
            }
        }