     :root {
            --neon-red: #ff003c;
            --bright-yellow: #ffde00;
            --dark-bg: #0a0a0a;
            --light-bg: #111;
            --text-light: #f8f8f8;
            --text-gray: #ccc;
            --accent: #ff9900;
        }
        
        * {
            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(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(255, 0, 60, 0.1);
            border-bottom: 2px solid var(--neon-red);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--bright-yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--neon-red);
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.7);
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--bright-yellow);
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--neon-red);
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Main Content */
        .cookies-container {
            max-width: 1200px;
            margin: 120px auto 50px;
            padding: 0 2rem;
        }
        
        .cookies-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid rgba(255, 0, 60, 0.3);
        }
        
        .cookies-header h1 {
            font-size: 2.8rem;
            color: var(--bright-yellow);
            margin-bottom: 1rem;
            text-shadow: 0 0 15px rgba(255, 222, 0, 0.3);
        }
        
        .cookies-header .last-updated {
            color: var(--text-gray);
            font-style: italic;
        }
        
        .cookies-content {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 0, 60, 0.2);
        }
        
        .cookies-section {
            margin-bottom: 2.5rem;
        }
        
        .cookies-section h2 {
            color: var(--bright-yellow);
            margin-bottom: 1rem;
            font-size: 1.8rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 222, 0, 0.2);
        }
        
        .cookies-section p {
            margin-bottom: 1rem;
            color: var(--text-gray);
        }
        
        .cookies-section ul, .cookies-section ol {
            margin-left: 2rem;
            margin-bottom: 1rem;
            color: var(--text-gray);
        }
        
        .cookies-section li {
            margin-bottom: 0.5rem;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        
        .cookie-table th, .cookie-table td {
            padding: 1rem;
            text-align: left;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .cookie-table th {
            background-color: rgba(255, 0, 60, 0.1);
            color: var(--bright-yellow);
            font-weight: 600;
        }
        
        .cookie-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.02);
        }
        
        .cookie-type {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-right: 0.5rem;
        }
        
        .cookie-essential {
            background-color: rgba(255, 0, 60, 0.2);
            color: #ff99aa;
        }
        
        .cookie-performance {
            background-color: rgba(255, 222, 0, 0.2);
            color: #ffee99;
        }
        
        .cookie-functional {
            background-color: rgba(0, 255, 100, 0.2);
            color: #99ffcc;
        }
        
        .cookie-advertising {
            background-color: rgba(100, 100, 255, 0.2);
            color: #aaaaff;
        }
        
        .cookie-controls {
            background: rgba(255, 222, 0, 0.05);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 222, 0, 0.2);
            margin-top: 2rem;
        }
        
        .cookie-controls h3 {
            color: var(--bright-yellow);
            margin-bottom: 1rem;
        }
        
        /* Footer */
        footer {
            background-color: #050505;
            padding: 3rem 2rem 1.5rem;
            border-top: 2px solid var(--neon-red);
            margin-top: 3rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }
        
        .footer-main {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            color: var(--bright-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--bright-yellow);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--bright-yellow);
        }
        
        /* Cookie Preferences */
        .cookie-preferences-btn {
            display: inline-block;
            background: var(--neon-red);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 1rem;
            transition: background 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .cookie-preferences-btn:hover {
            background: #ff3355;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .cookies-header h1 {
                font-size: 2.2rem;
            }
            
            .cookies-content {
                padding: 2rem;
            }
            
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.5s;
            }
            
            nav ul.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
            
            .footer-main {
                flex-direction: column;
                gap: 3rem;
            }
        }
        
        @media (max-width: 576px) {
            .cookies-header h1 {
                font-size: 1.8rem;
            }
            
            .cookies-container {
                padding: 0 1rem;
                margin-top: 100px;
            }
            
            .cookies-content {
                padding: 1.5rem;
            }
        }
        
        .back-to-home {
            display: inline-block;
            margin-top: 2rem;
            color: var(--bright-yellow);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        .back-to-home:hover {
            color: var(--neon-red);
        }
        
        .back-to-home i {
            margin-right: 8px;
        }
          :root {
            --neon-red: #ff003c;
            --bright-yellow: #ffde00;
            --dark-bg: #0a0a0a;
            --light-bg: #111;
            --text-light: #f8f8f8;
            --text-gray: #ccc;
            --accent: #ff9900;
        }
        
        * {
            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(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(255, 0, 60, 0.1);
            border-bottom: 2px solid var(--neon-red);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--bright-yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--neon-red);
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.7);
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--bright-yellow);
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--neon-red);
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Main Content */
        .policy-container {
            max-width: 1200px;
            margin: 120px auto 50px;
            padding: 0 2rem;
        }
        
        .policy-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid rgba(255, 0, 60, 0.3);
        }
        
        .policy-header h1 {
            font-size: 2.8rem;
            color: var(--bright-yellow);
            margin-bottom: 1rem;
            text-shadow: 0 0 15px rgba(255, 222, 0, 0.3);
        }
        
        .policy-header .last-updated {
            color: var(--text-gray);
            font-style: italic;
        }
        
        .policy-content {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 0, 60, 0.2);
        }
        
        .policy-section {
            margin-bottom: 2.5rem;
        }
        
        .policy-section h2 {
            color: var(--bright-yellow);
            margin-bottom: 1rem;
            font-size: 1.8rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 222, 0, 0.2);
        }
        
        .policy-section p {
            margin-bottom: 1rem;
            color: var(--text-gray);
        }
        
        .policy-section ul, .policy-section ol {
            margin-left: 2rem;
            margin-bottom: 1rem;
            color: var(--text-gray);
        }
        
        .policy-section li {
            margin-bottom: 0.5rem;
        }
        
        .highlight {
            background: rgba(255, 0, 60, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--neon-red);
            margin: 1.5rem 0;
        }
        
        .contact-info {
            background: rgba(255, 222, 0, 0.05);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 222, 0, 0.2);
            margin-top: 2rem;
        }
        
        .contact-info h3 {
            color: var(--bright-yellow);
            margin-bottom: 1rem;
        }
        
        /* Footer */
        footer {
            background-color: #050505;
            padding: 3rem 2rem 1.5rem;
            border-top: 2px solid var(--neon-red);
            margin-top: 3rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }
        
        .footer-main {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            color: var(--bright-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--bright-yellow);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--bright-yellow);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .policy-header h1 {
                font-size: 2.2rem;
            }
            
            .policy-content {
                padding: 2rem;
            }
            
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.5s;
            }
            
            nav ul.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .footer-main {
                flex-direction: column;
                gap: 3rem;
            }
        }
        
        @media (max-width: 576px) {
            .policy-header h1 {
                font-size: 1.8rem;
            }
            
            .policy-container {
                padding: 0 1rem;
                margin-top: 100px;
            }
            
            .policy-content {
                padding: 1.5rem;
            }
        }
        
        .back-to-home {
            display: inline-block;
            margin-top: 2rem;
            color: var(--bright-yellow);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        .back-to-home:hover {
            color: var(--neon-red);
        }
        
        .back-to-home i {
            margin-right: 8px;
        }
          :root {
            --neon-red: #ff003c;
            --bright-yellow: #ffde00;
            --dark-bg: #0a0a0a;
            --light-bg: #111;
            --text-light: #f8f8f8;
            --text-gray: #ccc;
            --accent: #ff9900;
        }
        
        * {
            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(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(255, 0, 60, 0.1);
            border-bottom: 2px solid var(--neon-red);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--bright-yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--neon-red);
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.7);
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--bright-yellow);
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--neon-red);
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Main Content */
        .terms-container {
            max-width: 1200px;
            margin: 120px auto 50px;
            padding: 0 2rem;
        }
        
        .terms-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid rgba(255, 0, 60, 0.3);
        }
        
        .terms-header h1 {
            font-size: 2.8rem;
            color: var(--bright-yellow);
            margin-bottom: 1rem;
            text-shadow: 0 0 15px rgba(255, 222, 0, 0.3);
        }
        
        .terms-header .last-updated {
            color: var(--text-gray);
            font-style: italic;
        }
        
        .terms-content {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 0, 60, 0.2);
        }
        
        .terms-section {
            margin-bottom: 2.5rem;
        }
        
        .terms-section h2 {
            color: var(--bright-yellow);
            margin-bottom: 1rem;
            font-size: 1.8rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 222, 0, 0.2);
        }
        
        .terms-section p {
            margin-bottom: 1rem;
            color: var(--text-gray);
        }
        
        .terms-section ul, .terms-section ol {
            margin-left: 2rem;
            margin-bottom: 1rem;
            color: var(--text-gray);
        }
        
        .terms-section li {
            margin-bottom: 0.5rem;
        }
        
        .warning-box {
            background: rgba(255, 0, 60, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--neon-red);
            margin: 1.5rem 0;
        }
        
        .info-box {
            background: rgba(255, 222, 0, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 222, 0, 0.2);
            margin: 1.5rem 0;
        }
        
        /* Footer */
        footer {
            background-color: #050505;
            padding: 3rem 2rem 1.5rem;
            border-top: 2px solid var(--neon-red);
            margin-top: 3rem;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }
        
        .footer-main {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            color: var(--bright-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--bright-yellow);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--bright-yellow);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .terms-header h1 {
                font-size: 2.2rem;
            }
            
            .terms-content {
                padding: 2rem;
            }
            
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.5s;
            }
            
            nav ul.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .footer-main {
                flex-direction: column;
                gap: 3rem;
            }
        }
        
        @media (max-width: 576px) {
            .terms-header h1 {
                font-size: 1.8rem;
            }
            
            .terms-container {
                padding: 0 1rem;
                margin-top: 100px;
            }
            
            .terms-content {
                padding: 1.5rem;
            }
        }
        
        .back-to-home {
            display: inline-block;
            margin-top: 2rem;
            color: var(--bright-yellow);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }
        
        .back-to-home:hover {
            color: var(--neon-red);
        }
        
        .back-to-home i {
            margin-right: 8px;
        }
          :root {
            --neon-red: #ff003c;
            --bright-yellow: #ffde00;
            --dark-bg: #0a0a0a;
            --light-bg: #111;
            --text-light: #f8f8f8;
            --text-gray: #ccc;
            --accent: #ff9900;
        }
        
        * {
            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(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Header & Navigation */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(255, 0, 60, 0.1);
            border-bottom: 2px solid var(--neon-red);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--bright-yellow);
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--neon-red);
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.7);
        }
        
        .logo i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            padding: 0.5rem 0;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--bright-yellow);
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--neon-red);
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Banner */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('ban.png');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            margin-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 2rem;
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 10px;
            border: 1px solid rgba(255, 0, 60, 0.3);
            box-shadow: 0 0 30px rgba(255, 0, 60, 0.2);
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--bright-yellow);
            text-shadow: 0 0 15px rgba(255, 222, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--text-gray);
        }
        
        /* Casino List */
        .casino-list {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: var(--bright-yellow);
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: var(--neon-red);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 10px rgba(255, 0, 60, 0.7);
        }
        
        .casino-container {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            margin-bottom: 5rem;
        }
        
        .casino-item {
            background: var(--light-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 0, 60, 0.2);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: row;
        }
        
        .casino-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 0, 60, 0.2);
            border-color: rgba(255, 0, 60, 0.5);
        }
        
        .casino-logo-container {
            flex: 0 0 250px;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        
        .casino-logo {
            max-width: 200px;
            max-height: 120px;
            object-fit: contain;
        }
        
        .casino-content {
            flex: 1;
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }
        
        .casino-title {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--bright-yellow);
        }
        
        .casino-advantages {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .advantage {
            background: rgba(255, 0, 60, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 0, 60, 0.3);
        }
        
        .advantage i {
            color: var(--bright-yellow);
            margin-right: 5px;
        }
        
        .bonus-btn {
            display: inline-block;
            background: linear-gradient(to right, var(--neon-red), #ff4400);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            text-align: center;
            transition: all 0.3s;
            margin-top: auto;
            align-self: flex-start;
            box-shadow: 0 5px 15px rgba(255, 0, 60, 0.4);
            border: none;
            cursor: pointer;
        }
        
        .bonus-btn:hover {
            background: linear-gradient(to right, #ff4400, var(--neon-red));
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(255, 0, 60, 0.6);
        }
        
        /* About & FAQ */
        .about, .faq-section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .about-content {
            background: var(--light-bg);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 222, 0, 0.2);
        }
        
        .about-content h3 {
            color: var(--bright-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        
        .about-content p {
            margin-bottom: 1.5rem;
            color: var(--text-gray);
        }
        
        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .faq-item {
            background: var(--light-bg);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255, 0, 60, 0.2);
        }
        
        .faq-question {
            padding: 1.5rem;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-light);
            background: rgba(255, 0, 60, 0.05);
        }
        
        .faq-question:hover {
            background: rgba(255, 0, 60, 0.1);
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            color: var(--text-gray);
        }
        
        .faq-item.active .faq-answer {
            padding: 1.5rem;
            max-height: 500px;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* Responsible Gambling */
        .responsible-gambling {
            padding: 5rem 2rem;
            background: var(--light-bg);
            text-align: center;
            margin-top: 2rem;
        }
        
        .rg-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .rg-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: var(--neon-red);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }
        
        .rg-title i {
            font-size: 3rem;
            color: var(--bright-yellow);
        }
        
        .rg-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .rg-text {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .rg-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .rg-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--bright-yellow);
            text-decoration: none;
            padding: 1rem 2rem;
            border: 1px solid rgba(255, 222, 0, 0.3);
            border-radius: 10px;
            transition: all 0.3s;
        }
        
        .rg-link:hover {
            background: rgba(255, 222, 0, 0.1);
            border-color: var(--bright-yellow);
        }
        
        /* Footer */
        footer {
            background-color: #050505;
            padding: 3rem 2rem 1.5rem;
            border-top: 2px solid var(--neon-red);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }
        
        .footer-main {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-column h3 {
            color: var(--bright-yellow);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-column ul li a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--bright-yellow);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.9rem;
            color: var(--text-gray);
        }
        
        .footer-links {
            display: flex;
            gap: 2rem;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--bright-yellow);
        }
        
        /* Cookie Consent */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.95);
            padding: 1.5rem 2rem;
            z-index: 9999;
            border-top: 2px solid var(--bright-yellow);
            display: none;
        }
        
        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .cookie-text {
            flex: 1;
            color: var(--text-gray);
        }
        
        .cookie-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .cookie-btn {
            padding: 0.7rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .cookie-accept {
            background: var(--bright-yellow);
            color: #000;
            border: none;
        }
        
        .cookie-accept:hover {
            background: #ffed4e;
        }
        
        .cookie-decline {
            background: transparent;
            color: var(--text-gray);
            border: 1px solid var(--text-gray);
        }
        
        .cookie-decline:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .casino-item {
                flex-direction: column;
            }
            
            .casino-logo-container {
                flex: none;
                min-height: 150px;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.5s;
            }
            
            nav ul.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .footer-main {
                flex-direction: column;
                gap: 3rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .casino-logo-container {
                min-height: 120px;
            }
            
            .casino-title {
                font-size: 1.6rem;
            }
            
            .bonus-btn {
                width: 100%;
                text-align: center;
            }
            
            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
        }