/*
Theme Name: Bingo Sites Not On Gamstop
Theme URI: https://bingositesnotongamstop.cn.com
Description: Casino affiliate theme for Bingo Sites Not On Gamstop
Version: 1.0.0
Author: bingositesnotongamstop.cn.com
Text Domain: nokyc
*/

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #94A3B8;
    --secondary: #1E293B;
    --accent: #CBD5E1;
    --background: #0F172A;
    --surface: #1E293B;
    --text: #F1F5F9;
    --text-muted: #94A3B8;
    --cta: #475569;
    --cta-hover: #64748B;
    --border: #334155;
    --success: #22C55E;
    --danger: #EF4444;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --max-width: 1280px;
    --radius: 0px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--text); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ── CONTAINER ── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.main-nav { display: flex; gap: 32px; list-style: none; }

.main-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.main-nav a:hover { color: var(--text); }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--secondary);
    border-bottom: 1px solid var(--border);
    padding: 20px;
    z-index: 999;
}

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

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: var(--text-muted);
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--text); }

/* ── HERO ── */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--secondary);
    padding: 60px 20px;
}

.hero-inner { max-width: 800px; }

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    color: var(--text);
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.inner-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--secondary);
    padding: 60px 20px;
}

.inner-hero.tall { min-height: 45vh; }

.inner-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
    color: var(--text);
}

.inner-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.badge {
    background: var(--background);
    border: 1px solid var(--border);
    padding: 8px 20px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    border-radius: var(--radius);
}

/* ── BUTTONS ── */
.btn-cta {
    display: inline-block;
    background: var(--cta);
    color: var(--text);
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-heading);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover { background: var(--cta-hover); color: var(--text); }

.btn-cta-sm {
    display: inline-block;
    background: var(--cta);
    color: var(--text);
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-heading);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-sm:hover { background: var(--cta-hover); color: var(--text); }

/* ── SECTION SPACING ── */
.section-spacing { padding: 60px 0; }
.section-heading {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text);
}

/* ── CASINO GRID ── */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.casino-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.casino-card-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
}

.casino-card-rank {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 30px;
}

.casino-card-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.casino-card-logo-placeholder {
    width: 48px;
    height: 48px;
    border: 2px dashed var(--border);
    flex-shrink: 0;
}

.casino-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.casino-card-stars {
    color: #FBBF24;
    font-size: 0.85rem;
}

.casino-card-body { padding: 20px; flex: 1; }

.casino-card-bonus {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
}

.casino-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.casino-card-meta span { display: block; }

.casino-card-badge {
    display: inline-block;
    background: var(--background);
    border: 1px solid var(--border);
    padding: 4px 12px;
    font-size: 0.75rem;
    color: var(--success);
    margin-top: 12px;
    font-weight: 600;
}

.casino-card-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
}

.casino-card-footer .btn-cta {
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px;
}

.casino-card-terms {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-align: center;
}

/* ── REVIEW BLOCKS ── */
.review-block {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.review-block:last-child { border-bottom: none; }

.review-topbar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.review-topbar-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.review-topbar-info { flex: 1; min-width: 200px; }

.review-topbar-info h3 {
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 4px;
}

.review-topbar-info .stars {
    color: #FBBF24;
    font-size: 0.9rem;
}

.review-topbar .btn-cta-sm { margin-left: auto; }

.review-screenshots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.review-screenshot {
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    aspect-ratio: 16/9;
}

.review-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.review-screenshot:hover img { transform: scale(1.02); }

.review-screenshot-placeholder {
    aspect-ratio: 16/9;
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.review-body {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.review-body h2 { font-size: 1.6rem; margin: 24px 0 12px; color: var(--text); }
.review-body h3 { font-size: 1.3rem; margin: 20px 0 10px; color: var(--text); }
.review-body h4 { font-size: 1.1rem; margin: 16px 0 8px; color: var(--text); }
.review-body p { margin-bottom: 12px; }
.review-body ul, .review-body ol { margin: 0 0 12px 20px; }
.review-body li { margin-bottom: 4px; }
.review-body a { color: var(--accent); text-decoration: underline; }

.review-body-placeholder {
    color: var(--text-muted);
    font-style: italic;
    padding: 20px 0;
}

.pros-cons-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 20px;
}

.pros-col, .cons-col { padding: 20px; }

.pros-col {
    background: rgba(34, 197, 94, 0.05);
    border-right: 1px solid var(--border);
}

.cons-col { background: rgba(239, 68, 68, 0.05); }

.pros-col h4 {
    color: var(--success);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.cons-col h4 {
    color: var(--danger);
    font-size: 0.95rem;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.pros-col li, .cons-col li {
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 8px;
    list-style: none;
    padding-left: 20px;
    position: relative;
}

.pros-col li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.cons-col li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}

.pros-cons-placeholder {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.85rem;
}

/* ── FAQ ── */
.faq-item { margin-bottom: 24px; }

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── AUTHOR BOX ── */
.author-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.author-box-info h4 {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 4px;
}

.author-box-info .title {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.author-box-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── CONTENT SECTIONS (from plugin) ── */
.content-section {
    background: var(--background);
}

.content-section .container {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
}

.content-section h2 { font-size: 1.6rem; margin: 24px 0 12px; color: var(--text); }
.content-section h3 { font-size: 1.3rem; margin: 20px 0 10px; color: var(--text); }
.content-section h4 { font-size: 1.1rem; margin: 16px 0 8px; color: var(--text); }
.content-section p { margin-bottom: 12px; }
.content-section ul, .content-section ol { margin: 0 0 12px 20px; }
.content-section li { margin-bottom: 4px; }

/* ── FOOTER ── */
.site-footer {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    padding: 40px 20px;
    text-align: left;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 800px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ── PAGE CONTENT ── */
.page-content {
    padding: 60px 0;
}

.page-content h2 { font-size: 1.6rem; margin: 24px 0 12px; }
.page-content h3 { font-size: 1.3rem; margin: 20px 0 10px; }
.page-content p { margin-bottom: 12px; line-height: 1.8; }
.page-content ul, .page-content ol { margin: 0 0 12px 20px; }
.page-content li { margin-bottom: 4px; }

/* ── TEAM GRID ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: left;
}

.team-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--primary); margin-bottom: 8px; }
.team-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ── CONTACT FORM ── */
.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.contact-info-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.contact-info-box h3 { font-size: 1.1rem; margin-bottom: 16px; }
.contact-info-box p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; }

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--success);
    color: #fff;
    padding: 14px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

.toast.show { opacity: 1; transform: translateY(0); }

/* ── LIGHTBOX ── */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
}

.lightbox-overlay.active { display: flex; }

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .casino-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: block; }

    .hero { min-height: 50vh; padding: 40px 20px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }

    .inner-hero { min-height: 35vh; }
    .inner-hero h1 { font-size: 1.8rem; }

    .casino-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .review-topbar { flex-direction: column; align-items: flex-start; }
    .review-topbar .btn-cta-sm { margin-left: 0; }

    .pros-cons-table { grid-template-columns: 1fr; }
    .pros-col { border-right: none; border-bottom: 1px solid var(--border); }

    .author-box { flex-direction: column; }

    .section-heading { font-size: 1.6rem; }

    .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .casino-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .casino-card-header { padding: 12px; gap: 8px; }
    .casino-card-rank { font-size: 1.1rem; }
    .casino-card-logo { width: 36px; height: 36px; }
    .casino-card-name { font-size: 0.85rem; }
    .casino-card-body { padding: 12px; }
    .casino-card-bonus { font-size: 0.85rem; }
    .casino-card-meta { font-size: 0.75rem; }
    .casino-card-footer { padding: 12px; }
    .casino-card-footer .btn-cta { padding: 10px; font-size: 0.8rem; }

    .review-screenshots { grid-template-columns: 1fr; }
}
