/*
Theme Name: NonGamstopSoccer
Theme URI: https://nongamstopsoccer.it.com
Description: Soccer Betting Sites Not On Gamstop - Casino affiliate theme
Author: NonGamstopSoccer Team
Version: 1.0.0
Text Domain: nongamstopsoccer
*/

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

:root {
    --color-primary: #14B8A6;
    --color-secondary: #134E4A;
    --color-accent: #2DD4BF;
    --color-bg: #042F2E;
    --color-surface: #134E4A;
    --color-text: #F0FDFA;
    --color-text-muted: #99F6E4;
    --color-cta: #0D9488;
    --color-cta-hover: #14B8A6;
    --color-border: #115E59;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1280px;
    --radius: 0px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-spacing { padding: 60px 0; }

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

.site-logo:hover { color: var(--color-accent); }

.main-nav { display: flex; gap: 32px; align-items: center; }
.main-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.main-nav a:hover { color: var(--color-accent); }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    margin: 5px 0;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    z-index: 999;
    padding: 32px 24px;
}
.mobile-nav.active { display: flex; flex-direction: column; gap: 24px; }
.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-text);
    font-weight: 600;
}

/* ========== HERO ========== */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-surface);
    padding: 80px 24px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 16px;
    color: var(--color-text);
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-text-muted);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.inner-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-surface);
    padding: 60px 24px;
    flex-direction: column;
    gap: 24px;
}

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

.inner-hero h1 {
    font-size: clamp(28px, 4vw, 48px);
}

.badges { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.badge {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    border-radius: var(--radius);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: var(--radius);
    text-align: center;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}
.btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-bg);
}

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

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

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

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

.casino-card-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    background: #fff;
    padding: 4px;
}

.casino-card-name {
    font-size: 18px;
    font-weight: 700;
}

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

.casino-card-stars { color: #F59E0B; font-size: 16px; margin-bottom: 8px; }

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

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

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

.casino-card-badge {
    display: inline-block;
    background: var(--color-cta);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.casino-card-footer .btn { width: 100%; }

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

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

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

.review-topbar-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    padding: 6px;
    flex-shrink: 0;
}

.review-topbar-info { flex: 1; min-width: 200px; }
.review-topbar-info h3 { font-size: 24px; margin-bottom: 4px; }
.review-topbar-stars { color: #F59E0B; font-size: 18px; }

.review-topbar .btn { white-space: nowrap; }

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

.review-screenshot {
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--color-border);
    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.03); }

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

.review-body p { margin-bottom: 16px; }

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

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

.pros-col {
    background: rgba(16, 185, 129, 0.08);
    border-right: 1px solid var(--color-border);
}

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

.pros-col h4 { color: #10B981; margin-bottom: 12px; font-size: 16px; }
.cons-col h4 { color: #EF4444; margin-bottom: 12px; font-size: 16px; }

.pros-col ul, .cons-col ul {
    list-style: none;
    padding: 0;
}

.pros-col li, .cons-col li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--color-text-muted);
    padding-left: 20px;
    position: relative;
}

.pros-col li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 700;
}

.cons-col li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #EF4444;
    font-weight: 700;
}

/* ========== FAQ ========== */
.faq-section { background: var(--color-surface); }

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-accent);
}

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

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

.author-box img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.author-box-info h3 { font-size: 18px; margin-bottom: 4px; }
.author-box-info .author-title {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}
.author-box-info p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 40px 0;
    text-align: left;
}

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

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

.footer-disclaimer {
    font-size: 12px;
    color: var(--color-text-muted);
    opacity: 0.7;
    line-height: 1.6;
    max-width: 800px;
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.content-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.content-section p { margin-bottom: 16px; }

.content-section ul, .content-section ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-section li { margin-bottom: 8px; }

/* ========== CONTACT FORM ========== */
.contact-form {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 40px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.contact-info-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 32px;
    margin-top: 32px;
}

.contact-info-box h3 { margin-bottom: 16px; font-size: 20px; }
.contact-info-item {
    padding: 12px 0;
    font-size: 15px;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
}
.contact-info-item:last-child { border-bottom: none; }

/* ========== TOAST ========== */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--color-cta);
    color: #fff;
    padding: 16px 28px;
    font-weight: 600;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    border-radius: var(--radius);
}

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

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

.lightbox.active { display: flex; }

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

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

.page-content .container {
    width: 90%;
    max-width: var(--max-width);
}

/* ========== ABOUT PAGE ========== */
.team-members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.team-member {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.team-member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    flex-shrink: 0;
}

.team-member h3 { font-size: 20px; margin-bottom: 4px; }
.team-member .role {
    font-size: 13px;
    color: var(--color-accent);
    margin-bottom: 12px;
    font-weight: 600;
}
.team-member p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: block; }
    .casino-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { min-height: 50vh; padding: 60px 24px; }
    .inner-hero { min-height: 30vh; }
    .review-topbar { flex-direction: column; text-align: left; align-items: flex-start; }
    .review-topbar .btn { width: 100%; }
    .pros-cons-table { grid-template-columns: 1fr; }
    .pros-col { border-right: none; border-bottom: 1px solid var(--color-border); }
    .team-members { grid-template-columns: 1fr; }
    .author-box { flex-direction: column; }
    .contact-form { padding: 24px; }
    .section-spacing { padding: 40px 0; }
}

@media (max-width: 480px) {
    .casino-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .casino-card-header { padding: 12px; gap: 10px; }
    .casino-card-logo { width: 40px; height: 40px; }
    .casino-card-rank { font-size: 22px; }
    .casino-card-name { font-size: 15px; }
    .casino-card-body { padding: 12px; }
    .casino-card-footer { padding: 12px; }
    .review-screenshots { grid-template-columns: 1fr; }
}
