/*
================================================
NeonSpins - style.css
================================================
Table of Contents:
1.  Global Styles & Variables
2.  Header & Navigation
3.  Compliance & Banners
4.  Hero Section
5.  Casinos Section
6.  About Section
7.  FAQ Section
8.  Trusted & Secure Section
9.  Footer
10. Generic Page Styles (Legal, etc.)
11. Responsive Styles (Media Queries)
================================================
*/

/* --- 1. Global Styles & Variables --- */
:root {
    --neon-glow: 0 0 20px rgba(195, 82, 248, .5);
    --gradient-dark: linear-gradient(135deg, #1d1c1e, #2a2832);
    --accent-blue: #706bb2;
    --dark-card: #2a2832;
    --primary-purple: #c352f8;
    --text-muted: #6a5a5b;
    --text-light: #e3d5e2;
    --dark-bg: #1d1c1e;
    --gradient-purple: linear-gradient(135deg, #c352f8, #9333ea);
}

* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}

body {
    overflow-x: hidden;
    color: var(--text-light);
    background: var(--dark-bg);
    line-height: 1.6;
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

.container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 2. Header & Navigation --- */
.header {
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    border-bottom: 1px solid rgba(195, 82, 248, .2);
    top: 0;
    background: rgba(29, 28, 30, .95);
    z-index: 1000;
}

.header-content {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(195, 82, 248, .3);
    color: var(--primary-purple);
    letter-spacing: 1px;
}

.nav {
    gap: 30px;
    align-items: center;
    display: flex;
}

.nav-link {
    padding: 10px 15px;
    text-decoration: none;
    font-weight: 500;
    color: var(--text-light);
    transition: all .3s ease;
    position: relative;
    border-radius: 8px;
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary-purple);
    background: rgba(195, 82, 248, .1);
}

.nav-link.active:after {
    height: 2px;
    transform: translateX(-50%);
    content: "";
    position: absolute;
    bottom: -15px;
    border-radius: 1px;
    background: var(--primary-purple);
    left: 50%;
    width: 30px;
}

.mobile-menu-btn {
    padding: 5px;
    border: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    cursor: pointer;
    display: none;
}

.hamburger-line {
    height: 3px;
    transition: .3s;
    border-radius: 2px;
    background: var(--text-light);
    width: 25px;
}

/* --- 3. Compliance & Banners --- */
.compliance-banner {
    padding: 15px 0;
    border-bottom: 2px solid var(--primary-purple);
    background: linear-gradient(135deg, #240046, #3c096c);
}

.compliance-content {
    justify-content: center;
    gap: 15px;
    text-align: center;
    align-items: center;
    display: flex;
}

.compliance-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
}

.compliance-text {
    font-size: .9rem;
    color: #fff;
    line-height: 1.5;
}

.compliance-text strong {
    color: gold;
}

.compliance-text a {
    text-decoration: underline;
    font-weight: 600;
    color: gold;
}

.compliance-text a:hover {
    color: #fff;
}

.compliance-notice {
    padding: 20px;
    border: 2px solid rgba(239, 68, 68, .3);
    margin-right: auto;
    max-width: 800px;
    border-radius: 12px;
    background: rgba(239, 68, 68, .1);
    margin-left: auto;
    margin-top: 30px;
}

.compliance-notice p {
    font-size: .95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.compliance-notice a {
    text-decoration: underline;
    font-weight: 600;
    color: gold;
}

/* --- 4. Hero Section --- */
.hero {
    overflow: hidden;
    min-height: 70vh;
    padding: 120px 0;
    position: relative;
    text-align: center;
    align-items: center;
    display: flex;
      background: linear-gradient(135deg, #111 10%, #2a0b3e 50%, #581c87 100%);
}

.hero:before {
    pointer-events: none;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Kept the subtle glow effect */
    background: radial-gradient(ellipse at center, rgba(195, 82, 248, 0.2) 0%, transparent 60%);
}

.hero-content {
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(195, 82, 248, .2);
    position: relative;
    border-radius: 20px;
    background: rgba(29, 28, 30, .3);
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8), 0 0 30px rgba(195, 82, 248, .8);
    color: #fff;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .7);
    color: var(--text-light);
    max-width: 800px;
    opacity: .95;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* --- 5. Casinos Section --- */
.casinos-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.casinos-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    display: grid;
}

.casino-card {
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(195, 82, 248, .2);
    transition: all .3s ease;
    position: relative;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--dark-card), #1f1e26);
}

.casino-card:before {
    height: 3px;
    right: 0;
    transition: opacity .3s ease;
    content: "";
    position: absolute;
    opacity: 0;
    top: 0;
    background: var(--gradient-purple);
    left: 0;
}

.casino-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .4), var(--neon-glow);
}

.casino-card:hover:before {
    opacity: 1;
}

.casino-header {
    margin-bottom: 20px;
    gap: 15px;
    align-items: center;
    display: flex;
}

.casino-logo-placeholder {
    height: 60px;
    width: 60px;
    padding: 8px;
    object-fit: contain;
    border-radius: 12px;
    background: hsla(0, 0%, 100%, .05);
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.casino-bonus h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-purple);
}

.casino-features {
    list-style: none;
    margin-bottom: 25px;
}

.casino-features li {
    padding: 8px 0 8px 20px;
    color: var(--text-light);
    position: relative;
    opacity: .9;
}

.casino-features li:before {
    font-weight: 700;
    color: var(--primary-purple);
    content: "•";
    position: absolute;
    left: 0;
}
a.visit-btn {
    text-decoration: none;
}
.casino-stats {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
    gap: 10px;
    display: grid;
}

.stat {
    padding: 8px 0;
    justify-content: space-between;
    border-bottom: 1px solid rgba(195, 82, 248, .1);
    display: flex;
}

.stat-label {
    font-size: .9rem;
    color: var(--text-muted);
}

.stat-value {
    font-weight: 600;
    color: var(--text-light);
}

.casino-rating {
    padding: 15px;
    border: 1px solid rgba(195, 82, 248, .2);
    text-align: center;
    border-radius: 12px;
    background: rgba(195, 82, 248, .1);
}

.rating-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-purple);
    display: block;
}

.rating-stars {
    font-size: 1.2rem;
    color: gold;
    margin: 5px 0;
}

.rating-text {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-light);
}

.visit-btn {
    flex: 1;
    padding: 12px;
    font-size: .9rem;
    border: none;
    font-weight: 600;
    transition: all .3s ease;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    box-shadow: 0 4px 15px rgba(195, 82, 248, .4);
    background: var(--gradient-purple);

 display: flex;
    flex-direction: column;
    align-items: center;  /* Centers the button horizontally */
    margin: 20px 0;  
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(195, 82, 248, .6);
}

/* --- 6. About Section --- */
.about-section {
    padding: 100px 0;
    position: relative;
    text-align: center;
    background: var(--dark-bg);
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.about-description,
.about-mission {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    opacity: .9;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.affiliate-disclosure {
    padding: 25px;
    border: 2px solid rgba(255, 193, 7, .3);
    text-align: center;
    margin: 30px 0;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 193, 7, .1), rgba(255, 152, 0, .05));
}

.affiliate-disclosure h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ff9800;
}

.affiliate-disclosure p {
    margin-bottom: 15px;
    color: var(--text-light);
    text-align: left;
    line-height: 1.6;
}

/* --- 7. FAQ Section --- */
.faq-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
    border: 1px solid rgba(195, 82, 248, .2);
    margin-bottom: 15px;
    transition: all .3s ease;
    border-radius: 12px;
    background: var(--dark-card);
}

.faq-item.active {
    border-color: var(--primary-purple);
    box-shadow: 0 5px 20px rgba(195, 82, 248, .2);
}

.faq-question {
    padding: 20px;
    transition: all .3s ease;
    align-items: center;
    cursor: pointer;
    display: flex;
}

.faq-question:hover {
    background: rgba(195, 82, 248, .05);
}

.faq-icon {
    font-size: 1.2rem;
    margin-right: 15px;
}

.faq-text {
    flex: 1;
    font-weight: 600;
    color: var(--text-light);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.faq-answer {
    overflow: hidden;
    padding: 0 20px;
    transition: all .3s ease;
    max-height: 0;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    opacity: .9;
    line-height: 1.6;
}

/* --- 8. Trusted & Secure Section --- */
.trusted-section {
    padding: 60px 0;
    text-align: center;
    background: var(--dark-bg);
}

.trusted-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trusted-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-light);
    opacity: 0.9;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;

}

.trusted-logos a img {
    height: 50px;
    opacity: 0.7;
    transition: all 0.3s ease;
    background: #fff;

}

.trusted-logos a:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* --- 9. Footer --- */
.footer {
    border-top: 1px solid rgba(195, 82, 248, .2);
    background: var(--dark-card);
}

.footer-content {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 60px 0 30px;
    gap: 60px;
    display: grid;
}

.footer-brand {
    text-align: center;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(195, 82, 248, .3);
    color: var(--primary-purple);
    letter-spacing: 1px;
}

.footer-copyright {
    font-size: .9rem;
    color: var(--text-muted);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-section p {
    font-size: .9rem;
    color: var(--text-light);
    opacity: .9;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: .9rem;
    text-decoration: none;
    color: var(--text-light);
    transition: all .3s ease;
    opacity: .8;
}

.footer-links a:hover {
    color: var(--primary-purple);
    opacity: 1;
}

.responsible-footer {
    padding: 40px 0;
    border-top: 1px solid rgba(195, 82, 248, .2);
    background: linear-gradient(135deg, var(--dark-bg), #1a1a1c);
}

.responsible-content {
    gap: 30px;
    align-items: center;
    display: flex;
}

.age-badge-footer {
    height: 60px;
    flex-shrink: 0;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    align-items: center;
    box-shadow: var(--neon-glow);
    border-radius: 50%;
    background: var(--gradient-purple);
    width: 60px;
    display: flex;
}

.responsible-text {
    flex: 1;
}

.responsible-text p {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}

.responsible-text a {
    text-decoration: underline;
    color: var(--primary-purple);
}

.help-organizations {
    gap: 15px;
    display: flex;
}

.help-btn {
    padding: 10px 20px;
    font-size: .9rem;
    border: 1px solid rgba(195, 82, 248, .3);
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-purple);
    transition: all .3s ease;
    border-radius: 8px;
    background: rgba(195, 82, 248, .1);
}

.help-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 4px 12px rgba(195, 82, 248, .4);
    background: var(--gradient-purple);
}

/* --- 10. Generic Page Styles (Legal, etc.) --- */
.page-hero {
    min-height: 40vh;
    padding: 80px 0;
    text-align: center;
    align-items: center;
      background: linear-gradient(135deg, #111 10%, #2a0b3e 50%, #581c87 100%);
    display: flex;
}

.page-hero-content {
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(195, 82, 248, .2);
    border-radius: 20px;
    background: rgba(29, 28, 30, .3);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
    color: #fff;
}

.legal-content {
    padding: 80px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
    border-bottom: 2px solid rgba(195, 82, 248, .2);
    padding-bottom: 10px;
    margin-top: 40px;
}

.legal-text p,
.legal-text ul {
    margin-bottom: 20px;
    color: var(--text-light);
    opacity: .9;
    line-height: 1.7;
}

.legal-text ul {
    padding-left: 25px;
}

.contact-info {
    padding: 25px;
    border: 1px solid rgba(195, 82, 248, .2);
    border-radius: 15px;
    background: var(--dark-card);
    margin-top: 30px;
}

/* --- 11. Responsive Styles (Media Queries) --- */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Nav */
    .nav {
        height: 100vh;
        justify-content: center;
        transition: left .3s ease;
        position: fixed;
        flex-direction: column;
        top: 0;
        background: var(--dark-bg);
        left: -100%;
        width: 100%;
        z-index: 1000;
    }
    .nav.mobile-open {
        left: 0;
    }
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }

    /* Grids */
    .casinos-grid,
    .games-grid,
    .testimonials-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-content {
        gap: 40px;
        text-align: center;
    }

    /* Footer */
    .responsible-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .help-organizations {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Casino Card */
    .casino-stats {
        grid-template-columns: 1fr;
    }
.casino-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;  /* Centers the button horizontally */
    margin: 20px 0;       /* Adds 20px of space top and bottom */
}
    
    /* Typography */
    .about-title,
    .contact-title,
    .faq-title {
        font-size: 2.2rem;
    }
    .page-title {
        font-size: 2.5rem;
    }
}