/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-yellow: #fffb00;
    --neon-yellow-glow: rgba(255, 251, 0, 0.7);
    --bright-green: #39ff14;
    --bright-green-glow: rgba(57, 255, 20, 0.7);
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(20, 20, 20, 0.9);
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --accent-purple: #9d00ff;
    --accent-blue: #00ccff;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, .logo-text, .hero-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.neon-text {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow-glow),
                 0 0 20px var(--neon-yellow-glow),
                 0 0 30px var(--neon-yellow-glow);
    animation: neon-pulse 2s infinite alternate;
}

@keyframes neon-pulse {
    from {
        text-shadow: 0 0 10px var(--neon-yellow-glow),
                     0 0 20px var(--neon-yellow-glow),
                     0 0 30px var(--neon-yellow-glow);
    }
    to {
        text-shadow: 0 0 5px var(--neon-yellow-glow),
                     0 0 10px var(--neon-yellow-glow),
                     0 0 15px var(--neon-yellow-glow),
                     0 0 20px var(--bright-green-glow);
    }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 251, 0, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: 1px;
}

.logo-highlight {
    color: var(--bright-green);
    text-shadow: 0 0 10px var(--bright-green-glow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--neon-yellow);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--neon-yellow);
    box-shadow: 0 0 10px var(--neon-yellow);
}

.age-badge {
    background-color: var(--bright-green);
    color: var(--dark-bg);
    font-weight: 900;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1rem;
    box-shadow: 0 0 15px var(--bright-green-glow);
}

.casino-badge {
    background-color: var(--neon-yellow);
    box-shadow: 0 0 15px var(--neon-yellow-glow);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: var(--neon-yellow);
}

/* Hero Sections */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('ban.png');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.casino-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('ban.png');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 251, 0, 0.1) 0%, 
        rgba(57, 255, 20, 0.1) 100%);
    z-index: 1;
}

.casino-overlay {
    background: linear-gradient(45deg, 
        rgba(255, 251, 0, 0.15) 0%, 
        rgba(157, 0, 255, 0.15) 50%,
        rgba(57, 255, 20, 0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--bright-green);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--neon-yellow);
    color: var(--dark-bg);
    box-shadow: 0 0 20px var(--neon-yellow-glow);
}

.btn-primary:hover {
    background-color: var(--bright-green);
    color: var(--dark-bg);
    box-shadow: 0 0 30px var(--bright-green-glow);
    transform: translateY(-3px);
}

.btn-book {
    background-color: transparent;
    color: var(--neon-yellow);
    border: 2px solid var(--neon-yellow);
    box-shadow: 0 0 15px rgba(255, 251, 0, 0.3);
}

.btn-book:hover {
    background-color: var(--neon-yellow);
    color: var(--dark-bg);
    box-shadow: 0 0 25px var(--neon-yellow-glow);
}

.btn-casino {
    background-color: var(--accent-purple);
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.7);
    width: 100%;
}

.btn-casino:hover {
    background-color: var(--accent-blue);
    box-shadow: 0 0 30px rgba(0, 204, 255, 0.7);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 100px 0;
}

/* Hotel Cards */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.hotel-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 251, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hotel-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-yellow);
    box-shadow: 0 15px 40px rgba(255, 251, 0, 0.2);
}

.hotel-logo {
    margin-bottom: 25px;
}

.hotel-logo i {
    font-size: 3rem;
    color: var(--neon-yellow);
    margin-bottom: 15px;
}

.hotel-logo h3 {
    font-size: 1.8rem;
    color: var(--bright-green);
}

.hotel-features {
    text-align: left;
    margin-bottom: 30px;
}

.hotel-features p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.neon-icon {
    color: var(--bright-green);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Casino Cards */
.casinos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.casino-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(157, 0, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.casino-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 40px rgba(157, 0, 255, 0.3);
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-yellow), var(--accent-purple), var(--bright-green));
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.casino-logo i {
    font-size: 2.5rem;
    color: var(--neon-yellow);
    margin-bottom: 10px;
}

.casino-logo h3 {
    font-size: 1.5rem;
    color: var(--bright-green);
}

.casino-rating {
    color: var(--neon-yellow);
}

.casino-rating i {
    margin-right: 2px;
}

.casino-features, .casino-hotel-features, .casino-rewards {
    margin-bottom: 20px;
    text-align: left;
}

.casino-features h4, .casino-hotel-features h4, .casino-rewards h4 {
    color: var(--accent-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.casino-features p, .casino-hotel-features p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.casino-features i, .casino-hotel-features i {
    color: var(--bright-green);
    margin-right: 10px;
    font-size: 1.1rem;
}

.casino-rewards {
    background: rgba(57, 255, 20, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--bright-green);
}

.casino-rewards h4 i {
    color: var(--neon-yellow);
    margin-right: 10px;
}

.casino-rewards p {
    margin-bottom: 5px;
    padding-left: 20px;
}

/* About Sections */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 251, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 251, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    color: var(--neon-yellow);
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--bright-green);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 251, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Exo 2', sans-serif;
}

.faq-question:hover {
    color: var(--neon-yellow);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Booking Forms */
.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 251, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 251, 0, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s ease;
}

.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
    outline: none;
    border-color: var(--neon-yellow);
    box-shadow: 0 0 15px rgba(255, 251, 0, 0.3);
}

.booking-form textarea {
    width: 100%;
    margin-bottom: 25px;
}

.casino-booking .booking-form {
    border-color: rgba(157, 0, 255, 0.3);
}

.terms-agreement {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.terms-agreement input {
    width: auto;
    margin-right: 10px;
}

.terms-agreement label {
    font-size: 0.9rem;
}

/* Responsible Gambling */
.responsible-section {
    background-color: var(--darker-bg);
    padding: 60px 0;
    border-top: 2px solid var(--bright-green);
    border-bottom: 2px solid var(--bright-green);
}

.responsible-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.age-warning {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.age-warning i {
    font-size: 2.5rem;
    color: var(--neon-yellow);
}

.age-warning h3 {
    font-size: 2rem;
    color: var(--bright-green);
}

.age-badge-large {
    background-color: var(--neon-yellow);
    color: var(--dark-bg);
    font-weight: 900;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1.5rem;
    box-shadow: 0 0 20px var(--neon-yellow-glow);
}

.responsible-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--text-gray);
}

.responsible-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.responsible-links a {
    color: var(--accent-blue);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid var(--accent-blue);
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.responsible-links a:hover {
    background-color: var(--accent-blue);
    color: var(--dark-bg);
}

.self-exclusion {
    color: var(--neon-yellow) !important;
    border-color: var(--neon-yellow) !important;
}

.self-exclusion:hover {
    background-color: var(--neon-yellow) !important;
    color: var(--dark-bg) !important;
}

.responsible-tools {
    background: rgba(57, 255, 20, 0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 3px solid var(--bright-green);
}

.responsible-tools h4 {
    color: var(--bright-green);
    margin-bottom: 10px;
}

.responsible-tools p {
    color: var(--text-gray);
}

.casino-responsible {
    border-color: var(--accent-purple);
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 251, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo p {
    margin-top: 15px;
    color: var(--text-gray);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: var(--bright-green);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--neon-yellow);
}

.footer-column p {
    color: var(--text-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column i {
    color: var(--neon-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 251, 0, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.age-badge-small {
    display: inline-block;
    background-color: var(--bright-green);
    color: var(--dark-bg);
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-left: 5px;
}

.licensing {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hotels-grid, .casinos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--darker-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        border-top: 1px solid var(--neon-yellow);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hotels-grid, .casinos-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .responsible-links {
        flex-direction: column;
        align-items: center;
    }
    
    .age-warning {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .booking-form {
        padding: 20px;
    }
}
/* Privacy Policy & Terms Styles */
.policy-container {
    padding: 120px 0 60px;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 251, 0, 0.3);
}

.policy-title {
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.policy-update {
    color: var(--bright-green);
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 50px;
    padding: 25px;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 251, 0, 0.1);
    transition: all 0.3s ease;
}

.policy-section:hover {
    border-color: rgba(255, 251, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.policy-section h2 {
    color: var(--bright-green);
    margin-bottom: 20px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.policy-section h3 {
    color: var(--neon-yellow);
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.policy-section h4 {
    color: var(--accent-blue);
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-gray);
}

.policy-section ul {
    margin: 15px 0 25px 25px;
    color: var(--text-gray);
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.policy-section strong {
    color: var(--text-light);
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.cookie-type {
    background: rgba(255, 251, 0, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 251, 0, 0.2);
    text-align: center;
}

.cookie-type h4 {
    color: var(--neon-yellow);
    margin-bottom: 10px;
}

.security-measures {
    background: rgba(57, 255, 20, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.security-icon {
    color: var(--bright-green);
    margin-right: 10px;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.right-card {
    background: rgba(0, 204, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 204, 255, 0.2);
    transition: all 0.3s ease;
}

.right-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 20px rgba(0, 204, 255, 0.1);
}

.right-card h4 {
    color: var(--accent-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info {
    background: rgba(255, 251, 0, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 251, 0, 0.2);
    margin: 20px 0;
}

.contact-info h3 {
    color: var(--neon-yellow);
    margin-top: 20px;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--bright-green);
    width: 20px;
}

.policy-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* Responsive Design for Policies */
@media (max-width: 768px) {
    .policy-title {
        font-size: 2.2rem;
    }
    
    .policy-section {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cookie-types, .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .policy-actions .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}
  .terms-highlight {
            background: linear-gradient(90deg, rgba(255,251,0,0.1) 0%, rgba(57,255,20,0.1) 100%);
            border-left: 4px solid var(--neon-yellow);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        
        .warning-box {
            background: linear-gradient(90deg, rgba(255,30,30,0.1) 0%, rgba(255,100,0,0.1) 100%);
            border-left: 4px solid #ff1e1e;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        
        .info-box {
            background: linear-gradient(90deg, rgba(0,150,255,0.1) 0%, rgba(0,200,255,0.1) 100%);
            border-left: 4px solid #0096ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        
        .clause-number {
            display: inline-block;
            background: var(--neon-yellow);
            color: var(--dark-bg);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            margin-right: 15px;
            font-weight: bold;
            font-family: 'Orbitron', sans-serif;
        }
        
        .casino-terms {
            background: linear-gradient(90deg, rgba(157,0,255,0.1) 0%, rgba(255,0,150,0.1) 100%);
            border: 1px solid rgba(157,0,255,0.3);
            border-radius: 15px;
            padding: 25px;
            margin: 30px 0;
        }
        
        .jurisdiction-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .jurisdiction-table th {
            background: var(--card-bg);
            padding: 15px;
            text-align: left;
            border-bottom: 2px solid var(--neon-yellow);
        }
        
        .jurisdiction-table td {
            padding: 12px 15px;
            border-bottom: 1px solid rgba(255,251,0,0.2);
        }
        
        .jurisdiction-table tr:hover {
            background: rgba(255,251,0,0.05);
        }
        
        .acceptance-section {
            text-align: center;
            padding: 40px;
            background: rgba(57,255,20,0.05);
            border-radius: 20px;
            margin: 40px 0;
            border: 2px solid rgba(57,255,20,0.3);
        }