/* CSS Variables */
:root {
    /* Colors */
    --dark-bg: #0A0A0A;
    --card-bg: #1A1A1A;
    --dark-gray: #2A2A2A;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;
    
    /* Neon Colors */
    --neon-blue: #00FFFF;
    --neon-purple: #B026FF;
    --neon-green: #39FF14;
    --neon-pink: #FF1493;
    
    /* Gradients */
    --gradient-blue-purple: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    --gradient-green: linear-gradient(135deg, var(--neon-green), #32CD32);
    --gradient-purple: linear-gradient(135deg, var(--neon-purple), #9932CC);
    --gradient-yellow: linear-gradient(135deg, #FFD700, #FFA500);
    --gradient-red: linear-gradient(135deg, #FF4500, #DC143C);
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    --border-radius: 1rem;
}

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

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

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Utility Classes */
.neon-text {
    text-shadow: 0 0 10px currentColor;
}

/* Header */
.header {
    background-color: var(--card-bg);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-blue-purple);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: white;
    width: 1.5rem;
    height: 1.5rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--neon-blue);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--neon-blue);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.mobile-menu.active {
    display: block;
}

.nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-mobile .nav-link {
    text-align: left;
    padding: 0.75rem 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(176, 38, 255, 0.1) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('#');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 4xl;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-blue-purple);
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.btn-primary {
    background: var(--gradient-blue-purple);
    color: white;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.5);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
}

.btn-secondary:hover {
    background: var(--neon-green);
    color: black;
}

.btn-green {
    background: var(--gradient-green);
    color: black;
    font-weight: 700;
}

.btn-green:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
}

.btn-purple {
    background: var(--gradient-purple);
    color: white;
    font-weight: 700;
}

.btn-purple:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.5);
}

/* Casino Listings */
.casino-listings {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--dark-bg), var(--card-bg));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 32rem;
    margin: 0 auto;
}

.casino-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.casino-purple {
    box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
    border: 1px solid rgba(176, 38, 255, 0.5);
}

.casino-purple:hover {
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.5);
}

.casino-blue {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.5);
}

.casino-blue:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.casino-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.casino-icon .icon-bg {
    width: 8rem;
    height: 8rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-yellow {
    background: var(--gradient-yellow);
}

.icon-red {
    background: var(--gradient-red);
}

.casino-icon i {
    width: 4rem;
    height: 4rem;
    color: white;
}

.casino-name {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.casino-purple .casino-name {
    color: var(--neon-blue);
}

.casino-blue .casino-name {
    color: var(--neon-purple);
}

.casino-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.benefit i {
    color: var(--neon-green);
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* About Us */
.about-us {
    padding: var(--section-padding);
    background-color: var(--card-bg);
}

.content-center {
    max-width: 4xl;
    margin: 0 auto;
    text-align: center;
}

.about-us .section-title {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.about-content {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--card-bg), var(--dark-bg));
}

.faq .section-title {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.faq-container {
    max-width: 4xl;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid #333;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-icon.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.faq-answer.active {
    display: block;
}

/* Responsible Gambling */
.responsible-gambling {
    padding: var(--section-padding);
    background-color: var(--card-bg);
}

.section-header-with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.age-badge {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--neon-pink), #DC143C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
}

.responsible-gambling .section-title {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.responsible-content {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.responsible-content p {
    margin-bottom: 1.5rem;
}

.help-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.help-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-align: center;
}

.help-blue {
    background: linear-gradient(135deg, #1E40AF, #1E3A8A);
}

.help-blue:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.help-green {
    background: linear-gradient(135deg, #16A34A, #15803D);
}

.help-green:hover {
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.5);
    transform: translateY(-2px);
}

.help-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.help-blue .help-icon i {
    color: var(--neon-blue);
    width: 3rem;
    height: 3rem;
    transition: transform 0.3s ease;
}

.help-green .help-icon i {
    color: var(--neon-green);
    width: 3rem;
    height: 3rem;
    transition: transform 0.3s ease;
}

.help-card:hover .help-icon i {
    transform: scale(1.1);
}

.help-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.help-card p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    border-top: 1px solid #333;
    padding: 3rem 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    width: 2rem;
    height: 2rem;
}

.footer-logo .logo-text {
    font-size: 1.125rem;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column:nth-child(2) .footer-title {
    color: var(--neon-purple);
}

.footer-column:nth-child(3) .footer-title {
    color: var(--neon-green);
}

.footer-column:nth-child(4) .footer-title {
    color: var(--neon-pink);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-link:hover {
    color: var(--neon-blue);
}

.footer-link i {
    width: 0.75rem;
    height: 0.75rem;
}

.footer-external-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.age-reminder {
    color: var(--neon-pink);
    font-weight: 700;
    margin-left: 0.5rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .casino-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .help-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .casino-content {
        flex-direction: row;
        text-align: left;
    }
    
    .casino-info {
        flex-grow: 1;
    }
    
    .casino-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit {
        justify-content: flex-start;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s infinite;
}