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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #F8FAFC;
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

/* Color Variables */
:root {
    --neon-blue: #00D4FF;
    --electric-purple: #8B5CF6;
    --neon-green: #10B981;
    --hot-pink: #EC4899;
    --dark-navy: #0F172A;
    --charcoal: #1E293B;
    --gold: #F59E0B;
    --muted: #94A3B8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--neon-blue);
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-blue);
}

.logo i {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: #F8FAFC;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: #F8FAFC;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8)), 
                url('#') center/cover;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--neon-blue);
    color: var(--neon-blue);
}

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

/* Buttons */
.btn-neon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(45deg, var(--neon-blue), var(--electric-purple));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.btn-bonus {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, var(--neon-green), var(--gold));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.5);
}

/* Sections */
.casinos-section,
.about-section,
.faq-section,
.responsible-section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 3.5rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 4px;
    background: linear-gradient(45deg, var(--neon-blue), var(--electric-purple));
    border-radius: 2px;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted);
    margin-top: 1rem;
}

/* Casino Cards */
.casino-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.casino-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.casino-logo-section {
    text-align: center;
}

.casino-logo {
    width: 192px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    border-radius: 8px;
    background: white;
    padding: 12px;
}

.rating {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.star {
    color: var(--muted);
}

.star.filled {
    color: var(--gold);
}

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

.casino-info {
    padding: 0 1rem;
}

.casino-name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.rizk-color {
    color: var(--neon-blue);
}

.betgrouse-color {
    color: var(--neon-green);
}

.casino-description {
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #F8FAFC;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: bold;
    font-size: 1.125rem;
}

.casino-bonus {
    text-align: center;
}

.terms {
    color: var(--muted);
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-description {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature {
    padding: 1.5rem;
    text-align: center;
}

.feature i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature:nth-child(1) i {
    color: var(--neon-green);
}

.feature:nth-child(2) i {
    color: var(--neon-blue);
}

.feature:nth-child(3) i {
    color: var(--gold);
}

.feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature p {
    color: var(--muted);
}

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

.faq-item {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--muted);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

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

.faq-question:hover {
    background: rgba(148, 163, 184, 0.1);
}

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

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--muted);
    line-height: 1.7;
}

/* Responsible Gambling Section */
.responsible-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.age-restriction {
    background: linear-gradient(45deg, var(--hot-pink), var(--electric-purple));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.125rem;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.responsible-description {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.help-section {
    margin-bottom: 1.5rem;
}

.help-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.help-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-green);
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.disclaimer {
    margin-top: 2rem;
}

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

/* Footer */
.footer {
    background: var(--dark-navy);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-logo i {
    font-size: 1.5rem;
    color: var(--neon-blue);
}

.footer-logo h5 {
    color: var(--neon-blue);
    font-size: 1.25rem;
    font-family: 'Poppins', sans-serif;
}

.footer-section p {
    color: var(--muted);
}

.footer-section h6 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--neon-blue);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
}

.footer-divider {
    border: none;
    height: 1px;
    background: var(--muted);
    margin: 1.5rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .casino-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .casino-logo {
        width: 160px;
        height: 64px;
    }

    .casino-name {
        font-size: 1.5rem;
    }

    .help-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .casino-card {
        padding: 1.5rem;
    }

    .casino-logo {
        width: 140px;
        height: 56px;
    }
}