       :root {
            --neon-green: #39ff14;
            --bright-yellow: #ffde00;
            --dark-bg: #0a0f1c;
            --light-bg: #111827;
            --text-color: #f8f9fa;
            --gray-text: #b0b7c3;
            --border-color: #2a3347;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 15, 28, 0.95);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--neon-green);
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            text-decoration: none;
            color: var(--bright-yellow);
            text-shadow: 0 0 10px rgba(255, 222, 0, 0.5);
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--neon-green);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 4px;
        }
        
        nav ul li a:hover {
            color: var(--neon-green);
            background-color: rgba(57, 255, 20, 0.1);
        }
        
        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--bright-yellow);
        }
        
        /* Hero Banner */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(10, 15, 28, 0.85), rgba(10, 15, 28, 0.95)), url('img/ban.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
            text-shadow: 0 0 15px rgba(255, 222, 0, 0.7);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--gray-text);
        }
        
        .highlight {
            color: var(--neon-green);
            font-weight: 700;
        }
        
        /* Casinos Section */
        .casinos-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
            color: var(--bright-yellow);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background-color: var(--neon-green);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .casinos-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .casino-item {
            background-color: rgba(10, 15, 28, 0.8);
            border-radius: 12px;
            padding: 30px;
            display: flex;
            align-items: center;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .casino-item:hover {
            border-color: var(--neon-green);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(57, 255, 20, 0.2);
        }
        
        .casino-logo {
            flex: 0 0 200px;
            margin-right: 40px;
            text-align: center;
        }
        
        .casino-logo img {
            max-width: 100%;
            height: auto;
            max-height: 100px;
        }
        
        .casino-content {
            flex: 1;
        }
        
        .casino-name {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--bright-yellow);
        }
        
        .advantages-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }
        
        .advantage-item {
            display: flex;
            align-items: center;
            font-size: 16px;
        }
        
        .advantage-item i {
            color: var(--neon-green);
            margin-right: 10px;
            font-size: 18px;
        }
        
        .bonus-button {
            display: inline-block;
            background: linear-gradient(to right, var(--neon-green), #2bd410);
            color: #000;
            font-weight: 700;
            font-size: 18px;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
        }
        
        .bonus-button:hover {
            transform: scale(1.05);
            box-shadow: 0 0 25px rgba(57, 255, 20, 0.8);
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background-color: var(--dark-bg);
        }
        
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .about-content h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--bright-yellow);
        }
        
        .about-content p {
            font-size: 18px;
            color: var(--gray-text);
            margin-bottom: 20px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: rgba(10, 15, 28, 0.6);
            font-weight: 600;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-color);
        }
        
        .faq-question:hover {
            background-color: rgba(57, 255, 20, 0.1);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: rgba(10, 15, 28, 0.4);
        }
        
        .faq-answer p {
            padding: 20px 0;
            color: var(--gray-text);
        }
        
        .faq-question.active + .faq-answer {
            max-height: 300px;
        }
        
        .faq-toggle {
            color: var(--neon-green);
            transition: transform 0.3s ease;
        }
        
        .faq-question.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        /* Responsible Gambling */
        .responsible-gambling {
            padding: 60px 0;
            background-color: var(--dark-bg);
            text-align: center;
            border-top: 2px solid var(--border-color);
        }
        
        .responsible-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .age-restriction {
            font-size: 80px;
            color: var(--neon-green);
            margin-bottom: 20px;
            text-shadow: 0 0 20px rgba(57, 255, 20, 0.7);
        }
        
        .responsible-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--bright-yellow);
        }
        
        .responsible-content p {
            font-size: 18px;
            color: var(--gray-text);
            margin-bottom: 30px;
        }
        
        .responsible-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .responsible-link {
            display: inline-block;
            background-color: rgba(57, 255, 20, 0.1);
            color: var(--neon-green);
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            border: 1px solid var(--neon-green);
            transition: all 0.3s ease;
        }
        
        .responsible-link:hover {
            background-color: rgba(57, 255, 20, 0.2);
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: #070b16;
            padding: 60px 0 30px;
            border-top: 2px solid var(--neon-green);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            flex: 0 0 30%;
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--bright-yellow);
            text-shadow: 0 0 10px rgba(255, 222, 0, 0.5);
            margin-bottom: 20px;
        }
        
        .footer-links {
            flex: 0 0 20%;
            margin-bottom: 20px;
        }
        
        .footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--neon-green);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: var(--gray-text);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: var(--neon-green);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            color: var(--gray-text);
            font-size: 14px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .advantages-list {
                grid-template-columns: 1fr;
            }
            
            .casino-item {
                flex-direction: column;
                text-align: center;
            }
            
            .casino-logo {
                flex: 0 0 auto;
                margin-right: 0;
                margin-bottom: 25px;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-bottom: 2px solid var(--neon-green);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
                z-index: 999;
            }
            
            nav ul.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .footer-content {
                flex-direction: column;
            }
            
            .footer-links {
                flex: 0 0 100%;
            }
        }

         :root {
            --neon-green: #39ff14;
            --bright-yellow: #ffde00;
            --dark-bg: #0a0f1c;
            --light-bg: #111827;
            --text-color: #f8f9fa;
            --gray-text: #b0b7c3;
            --border-color: #2a3347;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 15, 28, 0.95);
            padding: 20px 0;
            border-bottom: 2px solid var(--neon-green);
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            text-decoration: none;
            color: var(--bright-yellow);
            text-shadow: 0 0 10px rgba(255, 222, 0, 0.5);
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--neon-green);
        }
        
        .back-button {
            display: inline-block;
            color: var(--neon-green);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .back-button:hover {
            color: var(--bright-yellow);
        }
        
        /* Content */
        .policy-content {
            padding: 80px 0;
            background-color: var(--light-bg);
            min-height: calc(100vh - 200px);
        }
        
        .policy-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .policy-header h1 {
            font-size: 42px;
            color: var(--bright-yellow);
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(255, 222, 0, 0.5);
        }
        
        .policy-header .date {
            color: var(--neon-green);
            font-size: 16px;
            font-weight: 600;
        }
        
        .policy-text {
            background-color: rgba(10, 15, 28, 0.8);
            border-radius: 12px;
            padding: 40px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .section-title {
            color: var(--neon-green);
            font-size: 24px;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        
        .section-title:first-child {
            margin-top: 0;
        }
        
        .policy-text p {
            margin-bottom: 15px;
            color: var(--gray-text);
        }
        
        .policy-text ul {
            margin: 15px 0 15px 30px;
            color: var(--gray-text);
        }
        
        .policy-text li {
            margin-bottom: 8px;
        }
        
        .highlight {
            color: var(--neon-green);
            font-weight: 600;
        }
        
        /* Footer */
        footer {
            background-color: #070b16;
            padding: 30px 0;
            border-top: 2px solid var(--neon-green);
        }
        
        .footer-bottom {
            text-align: center;
            color: var(--gray-text);
            font-size: 14px;
        }
        
        .footer-bottom a {
            color: var(--neon-green);
            text-decoration: none;
            margin: 0 10px;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .policy-header h1 {
                font-size: 32px;
            }
            
            .policy-text {
                padding: 20px;
            }
            
            .section-title {
                font-size: 20px;
            }
        }
                :root {
            --neon-green: #39ff14;
            --bright-yellow: #ffde00;
            --dark-bg: #0a0f1c;
            --light-bg: #111827;
            --text-color: #f8f9fa;
            --gray-text: #b0b7c3;
            --border-color: #2a3347;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 15, 28, 0.95);
            padding: 20px 0;
            border-bottom: 2px solid var(--neon-green);
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            text-decoration: none;
            color: var(--bright-yellow);
            text-shadow: 0 0 10px rgba(255, 222, 0, 0.5);
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--neon-green);
        }
        
        .back-button {
            display: inline-block;
            color: var(--neon-green);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .back-button:hover {
            color: var(--bright-yellow);
        }
        
        /* Content */
        .terms-content {
            padding: 80px 0;
            background-color: var(--light-bg);
            min-height: calc(100vh - 200px);
        }
        
        .terms-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .terms-header h1 {
            font-size: 42px;
            color: var(--bright-yellow);
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(255, 222, 0, 0.5);
        }
        
        .terms-header .date {
            color: var(--neon-green);
            font-size: 16px;
            font-weight: 600;
        }
        
        .terms-text {
            background-color: rgba(10, 15, 28, 0.8);
            border-radius: 12px;
            padding: 40px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .section-title {
            color: var(--neon-green);
            font-size: 24px;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        
        .section-title:first-child {
            margin-top: 0;
        }
        
        .terms-text p {
            margin-bottom: 15px;
            color: var(--gray-text);
        }
        
        .terms-text ul {
            margin: 15px 0 15px 30px;
            color: var(--gray-text);
        }
        
        .terms-text li {
            margin-bottom: 8px;
        }
        
        .terms-text ol {
            margin: 15px 0 15px 30px;
            color: var(--gray-text);
        }
        
        .highlight {
            color: var(--neon-green);
            font-weight: 600;
        }
        
        .warning {
            background-color: rgba(255, 222, 0, 0.1);
            border-left: 4px solid var(--bright-yellow);
            padding: 15px;
            margin: 20px 0;
            border-radius: 4px;
        }
        
        /* Footer */
        footer {
            background-color: #070b16;
            padding: 30px 0;
            border-top: 2px solid var(--neon-green);
        }
        
        .footer-bottom {
            text-align: center;
            color: var(--gray-text);
            font-size: 14px;
        }
        
        .footer-bottom a {
            color: var(--neon-green);
            text-decoration: none;
            margin: 0 10px;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .terms-header h1 {
                font-size: 32px;
            }
            
            .terms-text {
                padding: 20px;
            }
            
            .section-title {
                font-size: 20px;
            }
        }
               :root {
            --neon-green: #39ff14;
            --bright-yellow: #ffde00;
            --dark-bg: #0a0f1c;
            --light-bg: #111827;
            --text-color: #f8f9fa;
            --gray-text: #b0b7c3;
            --border-color: #2a3347;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: rgba(10, 15, 28, 0.95);
            padding: 20px 0;
            border-bottom: 2px solid var(--neon-green);
            box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: 700;
            text-decoration: none;
            color: var(--bright-yellow);
            text-shadow: 0 0 10px rgba(255, 222, 0, 0.5);
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--neon-green);
        }
        
        .back-button {
            display: inline-block;
            color: var(--neon-green);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .back-button:hover {
            color: var(--bright-yellow);
        }
        
        /* Content */
        .cookies-content {
            padding: 80px 0;
            background-color: var(--light-bg);
            min-height: calc(100vh - 200px);
        }
        
        .cookies-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .cookies-header h1 {
            font-size: 42px;
            color: var(--bright-yellow);
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(255, 222, 0, 0.5);
        }
        
        .cookies-header .date {
            color: var(--neon-green);
            font-size: 16px;
            font-weight: 600;
        }
        
        .cookies-text {
            background-color: rgba(10, 15, 28, 0.8);
            border-radius: 12px;
            padding: 40px;
            border: 1px solid var(--border-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .section-title {
            color: var(--neon-green);
            font-size: 24px;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border-color);
        }
        
        .section-title:first-child {
            margin-top: 0;
        }
        
        .cookies-text p {
            margin-bottom: 15px;
            color: var(--gray-text);
        }
        
        .cookies-text ul {
            margin: 15px 0 15px 30px;
            color: var(--gray-text);
        }
        
        .cookies-text li {
            margin-bottom: 8px;
        }
        
        .highlight {
            color: var(--neon-green);
            font-weight: 600;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .cookie-table th, .cookie-table td {
            border: 1px solid var(--border-color);
            padding: 12px 15px;
            text-align: left;
        }
        
        .cookie-table th {
            background-color: rgba(57, 255, 20, 0.1);
            color: var(--neon-green);
        }
        
        .cookie-table tr:nth-child(even) {
            background-color: rgba(42, 51, 71, 0.3);
        }
        
        .cookie-type {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            margin-right: 5px;
        }
        
        .essential {
            background-color: rgba(57, 255, 20, 0.2);
            color: var(--neon-green);
        }
        
        .analytics {
            background-color: rgba(0, 123, 255, 0.2);
            color: #007bff;
        }
        
        .preference {
            background-color: rgba(255, 193, 7, 0.2);
            color: #ffc107;
        }
        
        .cookie-controls {
            background-color: rgba(10, 15, 28, 0.9);
            border: 1px solid var(--neon-green);
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
        }
        
        .cookie-controls h3 {
            color: var(--bright-yellow);
            margin-bottom: 15px;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .cookie-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .accept-btn {
            background-color: var(--neon-green);
            color: #000;
        }
        
        .reject-btn {
            background-color: transparent;
            color: var(--neon-green);
            border: 1px solid var(--neon-green);
        }
        
        .settings-btn {
            background-color: var(--bright-yellow);
            color: #000;
        }
        
        .cookie-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Footer */
        footer {
            background-color: #070b16;
            padding: 30px 0;
            border-top: 2px solid var(--neon-green);
        }
        
        .footer-bottom {
            text-align: center;
            color: var(--gray-text);
            font-size: 14px;
        }
        
        .footer-bottom a {
            color: var(--neon-green);
            text-decoration: none;
            margin: 0 10px;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .cookies-header h1 {
                font-size: 32px;
            }
            
            .cookies-text {
                padding: 20px;
            }
            
            .section-title {
                font-size: 20px;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
            
            .cookie-buttons {
                flex-direction: column;
            }
        }