 :root {
            --neon-yellow: #FFF01F;
            --bright-green: #00FF00;
            --dark-bg: #0a0a0a;
            --gray-bg: #1a1a1a;
            --text-light: #f0f0f0;
            --text-gray: #aaaaaa;
        }
        
        * {
            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;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid var(--neon-yellow);
            box-shadow: 0 5px 20px rgba(255, 240, 31, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        .logo span {
            color: var(--neon-yellow);
        }
        
        .logo i {
            color: var(--bright-green);
            font-size: 1.8rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            font-size: 1rem;
        }
        
        nav a:hover {
            color: var(--neon-yellow);
        }
        
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--neon-yellow);
        }
        
        /* Hero Banner */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('img/ban.png');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            margin-top: 70px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--neon-yellow);
            text-shadow: 0 0 10px rgba(255, 240, 31, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-light);
        }
        
        .highlight {
            color: var(--bright-green);
            font-weight: bold;
        }
        
        /* Casino List Section */
        .casinos-section {
            padding: 80px 0;
            background-color: var(--dark-bg);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: var(--neon-yellow);
        }
        
        .casino-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }
        
        .casino-card {
            background-color: var(--gray-bg);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255, 240, 31, 0.3);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-wrap: wrap;
        }
        
        .casino-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 240, 31, 0.1);
        }
        
        .casino-logo {
            flex: 1;
            min-width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background-color: rgba(0, 0, 0, 0.3);
        }
        
        .casino-logo img {
            max-width: 100%;
            max-height: 120px;
        }
        
        .casino-info {
            flex: 2;
            min-width: 300px;
            padding: 30px;
        }
        
        .casino-name {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--neon-yellow);
        }
        
        .benefits-list {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .benefits-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .benefits-list li:before {
            content: "✓";
            color: var(--bright-green);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .bonus-btn {
            display: inline-block;
            background: linear-gradient(45deg, var(--neon-yellow), #FFD700);
            color: #000;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .bonus-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(255, 240, 31, 0.7);
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background-color: var(--gray-bg);
        }
        
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .about-content h2 {
            color: var(--neon-yellow);
            margin-bottom: 30px;
            font-size: 2.5rem;
        }
        
        .about-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: var(--dark-bg);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid rgba(255, 240, 31, 0.2);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: rgba(26, 26, 26, 0.7);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 240, 31, 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: 300px;
        }
        
        /* Responsible Gambling */
        .responsible-gambling {
            padding: 60px 0;
            background-color: var(--gray-bg);
            text-align: center;
        }
        
        .rg-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .rg-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            color: var(--neon-yellow);
            font-size: 2rem;
        }
        
        .rg-icon {
            font-size: 2.5rem;
            color: #ff0000;
        }
        
        .rg-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .rg-link {
            color: var(--bright-green);
            text-decoration: none;
            border: 1px solid var(--bright-green);
            padding: 10px 20px;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .rg-link:hover {
            background-color: var(--bright-green);
            color: #000;
        }
        
        /* Footer */
        footer {
            background-color: #000;
            padding: 60px 0 20px;
            border-top: 1px solid var(--neon-yellow);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--neon-yellow);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-yellow);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .casino-card {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 0;
                display: none;
                border-bottom: 1px solid var(--neon-yellow);
            }
            
            nav ul.active {
                display: flex;
            }
            
            nav li {
                width: 100%;
                text-align: center;
                padding: 15px 0;
                border-bottom: 1px solid rgba(255, 240, 31, 0.1);
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .casino-logo, .casino-info {
                min-width: 100%;
            }
        }
            :root {
            --neon-yellow: #FFF01F;
            --bright-green: #00FF00;
            --dark-bg: #0a0a0a;
            --gray-bg: #1a1a1a;
            --text-light: #f0f0f0;
            --text-gray: #aaaaaa;
        }
        
        * {
            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;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid var(--neon-yellow);
            box-shadow: 0 5px 20px rgba(255, 240, 31, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        .logo a {
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo span {
            color: var(--neon-yellow);
        }
        
        .logo i {
            color: var(--bright-green);
            font-size: 1.8rem;
        }
        
        .back-btn {
            color: var(--neon-yellow);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }
        
        .back-btn:hover {
            color: var(--bright-green);
        }
        
        /* Content Section */
        .content-section {
            padding: 120px 0 80px;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5rem;
            color: var(--neon-yellow);
        }
        
        .last-updated {
            text-align: center;
            color: var(--text-gray);
            margin-bottom: 40px;
            font-style: italic;
        }
        
        .policy-content {
            background-color: var(--gray-bg);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid rgba(255, 240, 31, 0.2);
        }
        
        .section-title {
            color: var(--bright-green);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        
        .section-title:first-child {
            margin-top: 0;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        li {
            margin-bottom: 10px;
        }
        
        .highlight {
            color: var(--neon-yellow);
            font-weight: 500;
        }
        
        /* Footer */
        footer {
            background-color: #000;
            padding: 60px 0 20px;
            border-top: 1px solid var(--neon-yellow);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--neon-yellow);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-yellow);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .policy-content {
                padding: 25px;
            }
        }
        
        @media (max-width: 576px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .policy-content {
                padding: 20px;
            }
        }
                :root {
            --neon-yellow: #FFF01F;
            --bright-green: #00FF00;
            --dark-bg: #0a0a0a;
            --gray-bg: #1a1a1a;
            --text-light: #f0f0f0;
            --text-gray: #aaaaaa;
        }
        
        * {
            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;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid var(--neon-yellow);
            box-shadow: 0 5px 20px rgba(255, 240, 31, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        .logo a {
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo span {
            color: var(--neon-yellow);
        }
        
        .logo i {
            color: var(--bright-green);
            font-size: 1.8rem;
        }
        
        .back-btn {
            color: var(--neon-yellow);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }
        
        .back-btn:hover {
            color: var(--bright-green);
        }
        
        /* Content Section */
        .content-section {
            padding: 120px 0 80px;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5rem;
            color: var(--neon-yellow);
        }
        
        .last-updated {
            text-align: center;
            color: var(--text-gray);
            margin-bottom: 40px;
            font-style: italic;
        }
        
        .policy-content {
            background-color: var(--gray-bg);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid rgba(255, 240, 31, 0.2);
        }
        
        .section-title {
            color: var(--bright-green);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        
        .section-title:first-child {
            margin-top: 0;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        ul, ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        li {
            margin-bottom: 10px;
        }
        
        .highlight {
            color: var(--neon-yellow);
            font-weight: 500;
        }
        
        /* Footer */
        footer {
            background-color: #000;
            padding: 60px 0 20px;
            border-top: 1px solid var(--neon-yellow);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--neon-yellow);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-yellow);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .policy-content {
                padding: 25px;
            }
        }
        
        @media (max-width: 576px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .policy-content {
                padding: 20px;
            }
        }
                :root {
            --neon-yellow: #FFF01F;
            --bright-green: #00FF00;
            --dark-bg: #0a0a0a;
            --gray-bg: #1a1a1a;
            --text-light: #f0f0f0;
            --text-gray: #aaaaaa;
        }
        
        * {
            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;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: rgba(10, 10, 10, 0.95);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid var(--neon-yellow);
            box-shadow: 0 5px 20px rgba(255, 240, 31, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        .logo a {
            color: var(--text-light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo span {
            color: var(--neon-yellow);
        }
        
        .logo i {
            color: var(--bright-green);
            font-size: 1.8rem;
        }
        
        .back-btn {
            color: var(--neon-yellow);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }
        
        .back-btn:hover {
            color: var(--bright-green);
        }
        
        /* Content Section */
        .content-section {
            padding: 120px 0 80px;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5rem;
            color: var(--neon-yellow);
        }
        
        .last-updated {
            text-align: center;
            color: var(--text-gray);
            margin-bottom: 40px;
            font-style: italic;
        }
        
        .policy-content {
            background-color: var(--gray-bg);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid rgba(255, 240, 31, 0.2);
        }
        
        .section-title {
            color: var(--bright-green);
            margin: 30px 0 15px;
            font-size: 1.5rem;
        }
        
        .section-title:first-child {
            margin-top: 0;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        li {
            margin-bottom: 10px;
        }
        
        .highlight {
            color: var(--neon-yellow);
            font-weight: 500;
        }
        
        .cookie-types {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        .cookie-type {
            flex: 1;
            min-width: 250px;
            background-color: rgba(0, 0, 0, 0.3);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--bright-green);
        }
        
        .cookie-type h3 {
            color: var(--neon-yellow);
            margin-bottom: 10px;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .cookie-table th, .cookie-table td {
            border: 1px solid rgba(255, 240, 31, 0.2);
            padding: 12px;
            text-align: left;
        }
        
        .cookie-table th {
            background-color: rgba(0, 0, 0, 0.5);
            color: var(--neon-yellow);
        }
        
        .cookie-controls {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
            border: 1px solid rgba(255, 240, 31, 0.3);
        }
        
        .cookie-controls h3 {
            color: var(--bright-green);
            margin-bottom: 15px;
        }
        
        .cookie-btn {
            display: inline-block;
            background-color: var(--gray-bg);
            color: var(--text-light);
            border: 1px solid var(--neon-yellow);
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            margin-right: 10px;
            margin-bottom: 10px;
            transition: all 0.3s;
        }
        
        .cookie-btn:hover {
            background-color: var(--neon-yellow);
            color: #000;
        }
        
        /* Footer */
        footer {
            background-color: #000;
            padding: 60px 0 20px;
            border-top: 1px solid var(--neon-yellow);
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            color: var(--neon-yellow);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--neon-yellow);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }
            
            .policy-content {
                padding: 25px;
            }
            
            .cookie-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 576px) {
            .page-title {
                font-size: 1.8rem;
            }
            
            .policy-content {
                padding: 20px;
            }
        }