/* ===== Non Gamstop Casinos — katiebrownceremonies.co.uk ===== */
/* font-display:swap — ОБЯЗАТЕЛЬНО для всех @font-face (LCP оптимизация) */
@font-face{font-family:'Inter';font-display:swap}

:root {
  --bg:#FFFFFF;
  --bg-alt:#F8F9FA;
  --border:#E5E7EB;
  --text:#111827;
  --muted:#6B7280;
  --accent:#16A34A;
  --dark:#0f172a;
  --dark2:#1e293b;
  --radius:8px;
  --font:'Inter',system-ui,sans-serif;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--font);color:var(--text);background:var(--bg);line-height:1.7;font-size:16px}
img{max-width:100%;height:auto}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}

/* ── CONTAINER ── */
.container{max-width:1140px;margin:0 auto;padding:0 20px}

/* ── HEADER ── */
.site-header{background:var(--dark);padding:16px 0;position:sticky;top:0;z-index:100;box-shadow:0 2px 8px rgba(0,0,0,.3)}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.site-logo{color:#fff;font-size:20px;font-weight:700;text-decoration:none}
.site-logo span{color:var(--accent)}
.main-nav{display:flex;gap:24px;list-style:none}
.main-nav a{color:#cbd5e1;font-size:14px;font-weight:500;transition:color .2s}
.main-nav a:hover{color:#fff;text-decoration:none}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:4px}
.nav-toggle span{display:block;width:24px;height:2px;background:#fff;margin:5px 0;transition:.3s}
.mobile-nav{display:none;flex-direction:column;background:var(--dark2);padding:16px 20px;list-style:none;gap:12px}
@media(max-width:768px){
  .main-nav{display:none}
  .nav-toggle{display:block}
  .mobile-nav.open{display:flex}
}

/* ── HERO ── */
.hero{background:linear-gradient(135deg,#0f172a 0%,#1e293b 100%)!important;color:#fff;padding:80px 0 60px}
.hero h1,.hero-desc{color:#f1f5f9}
.hero h1{font-size:clamp(28px,4vw,46px);font-weight:800;line-height:1.2;margin-bottom:16px}
.hero-desc{font-size:18px;color:#94a3b8;max-width:700px;margin-bottom:32px}
.hero-stats{display:flex;gap:32px;margin-bottom:32px;flex-wrap:wrap}
.stat-item{text-align:center}
.stat-num{display:block;font-size:28px;font-weight:800;color:var(--accent)}
.stat-label{font-size:13px;color:#94a3b8;text-transform:uppercase;letter-spacing:.5px}
.hero-trust{display:flex;align-items:center;gap:8px;margin-top:20px;color:#fbbf24;font-size:14px}
.hero-author{display:flex;align-items:center;gap:12px;margin-top:24px;padding-top:24px;border-top:1px solid #1e293b}
.hero-author img{width:48px;height:48px;border-radius:50%;object-fit:cover;border:2px solid var(--accent)}
.hero-author-info{color:#94a3b8;font-size:13px}
.hero-author-info strong{display:block;color:#f1f5f9;font-size:15px}

/* ── BUTTONS ── */
.btn-primary{display:inline-flex;align-items:center;gap:8px;background:linear-gradient(135deg,#16A34A,#15803d);color:#fff;padding:14px 28px;border-radius:var(--radius);font-weight:700;text-decoration:none;animation:pulse 2s infinite;font-size:16px;transition:transform .2s}
.btn-primary:hover{transform:translateY(-2px);text-decoration:none;color:#fff}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(22,163,74,.4)}50%{box-shadow:0 0 0 8px rgba(22,163,74,0)}}
.btn-outline{display:inline-flex;align-items:center;gap:6px;border:2px solid var(--accent);color:var(--accent);padding:10px 20px;border-radius:var(--radius);font-weight:600;transition:all .2s}
.btn-outline:hover{background:var(--accent);color:#fff;text-decoration:none}

/* ── SECTIONS ── */
.section-light{background:var(--bg);padding:64px 0}
.section-alt{background:var(--bg-alt);padding:64px 0}
.section-dark{background:var(--dark);padding:64px 0;color:#f1f5f9}
.section-dark h2{color:#fff}
.section-dark p{color:#cbd5e1}

/* ── H2 БАННЕР ── */
.h2-banner-wrap{
  display:block;
  width:calc(100% + 40px);
  margin-left:-20px;
  overflow:hidden;
  line-height:0;
  clear:both;
  margin-bottom:24px;
  margin-top:16px;
}
.content-section h2{
  display:block;
  width:100%;
  float:none;
  clear:both;
  font-size:clamp(22px,3vw,32px);
  font-weight:700;
  margin-bottom:12px;
  color:var(--dark);
}
.section-dark .content-section h2{color:#fff}
.h2-banner-img{display:block;width:100%;aspect-ratio:3/1;object-fit:cover}
@media(max-width:767px){.h2-banner-img{aspect-ratio:1/1;object-position:center top}}
.h2-banner-wrap figcaption{font-size:11px;color:#6b7280;text-align:right;padding:4px 8px 0;font-style:italic}

/* ── SECTION BODY ── */
.section-body{font-size:16px;line-height:1.8;color:var(--text)}
.section-body p{margin-bottom:16px}
.section-body ul,.section-body ol{margin:16px 0 16px 24px}
.section-body li{margin-bottom:8px}
.section-body h3{font-size:20px;font-weight:700;margin:24px 0 12px;color:var(--dark)}
.section-body strong{color:var(--dark);font-weight:700}

/* ── TABLES ── */
.table-wrap{overflow-x:auto;margin:24px 0;border-radius:var(--radius);border:1px solid var(--border)}
table{width:100%;border-collapse:collapse;font-size:14px}
thead{background:var(--dark);color:#fff}
th{padding:12px 16px;text-align:left;font-weight:600;white-space:nowrap}
td{padding:11px 16px;border-bottom:1px solid var(--border)}
tr:last-child td{border-bottom:none}
tr:hover td{background:#f0fdf4}

/* ── VITRINA ── */
.vitrina-section{background:var(--dark);padding:64px 0}
.vitrina-section h2{color:#fff;font-size:clamp(24px,3vw,36px);font-weight:800;margin-bottom:8px;text-align:center}
.vitrina-subtitle{color:#94a3b8;text-align:center;margin-bottom:40px;font-size:16px}
.vitrina-grid{display:flex;flex-direction:column;gap:16px}
.casino-card{background:var(--dark2);border:1px solid #334155;border-radius:12px;padding:24px;display:flex;gap:20px;align-items:flex-start;transition:transform .2s,border-color .2s}
.casino-card:hover{transform:translateY(-2px);border-color:var(--accent)}
.casino-card.top-pick{border-color:var(--accent);position:relative;box-shadow:0 0 24px rgba(22,163,74,.2)}
.casino-card.top-pick::before{content:'#1 PICK';position:absolute;top:-1px;right:20px;background:var(--accent);color:#fff;font-size:11px;font-weight:700;padding:3px 10px;border-radius:0 0 6px 6px}
.casino-rank{width:36px;height:36px;background:var(--accent);color:#fff;font-weight:800;font-size:18px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.casino-main{flex:1}
.casino-badge{display:inline-block;background:#1e3a5f;color:#7dd3fc;font-size:12px;font-weight:600;padding:2px 10px;border-radius:20px;margin-bottom:8px}
.casino-name{font-size:20px;font-weight:700;color:#f1f5f9;margin-bottom:8px}
.casino-license{color:#94a3b8;font-size:13px;margin-bottom:6px}
.casino-bonus{color:#fbbf24;font-size:14px;font-weight:600;margin-bottom:10px}
.casino-features{display:flex;flex-wrap:wrap;gap:6px}
.feature-tag{background:#0f172a;color:#94a3b8;font-size:12px;padding:3px 10px;border-radius:20px;border:1px solid #334155}
.casino-cta{display:flex;flex-direction:column;align-items:flex-end;gap:10px;flex-shrink:0}
.casino-rating{color:#fbbf24;font-size:15px;font-weight:700}
@media(max-width:768px){
  .casino-card{flex-direction:column}
  .casino-cta{align-items:stretch}
  .casino-cta .btn-primary{text-align:center;justify-content:center}
}

/* ── EEAT / AUTHOR ── */
.eeat-section{background:var(--bg-alt);padding:64px 0}
.author-card{background:#fff;border-radius:12px;padding:32px;display:flex;gap:28px;box-shadow:0 2px 16px rgba(0,0,0,.06);border:1px solid var(--border)}
.author-photo{width:120px;height:120px;border-radius:50%;object-fit:cover;flex-shrink:0;border:3px solid var(--accent)}
.author-info h3{font-size:22px;font-weight:700;margin-bottom:4px}
.author-title-label{color:var(--accent);font-size:14px;font-weight:600;margin-bottom:12px;display:block}
.author-bio{color:var(--muted);font-size:15px;line-height:1.7;margin-bottom:16px}
.expertise-list{display:flex;flex-wrap:wrap;gap:8px;list-style:none}
.expertise-list li{background:#f0fdf4;color:#15803d;font-size:13px;font-weight:600;padding:4px 12px;border-radius:20px}
@media(max-width:600px){.author-card{flex-direction:column;align-items:center;text-align:center}}

/* ── REVIEWED BY ── */
.reviewed-section{background:var(--bg);padding:64px 0}
.reviewed-section h2{font-size:clamp(22px,3vw,32px);font-weight:700;margin-bottom:8px;text-align:center}
.reviewed-subtitle{color:var(--muted);text-align:center;margin-bottom:40px}
.reviewed-by-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
@media(max-width:768px){.reviewed-by-cards{grid-template-columns:1fr}}
.reviewer-card{background:var(--bg-alt);border:1px solid var(--border);border-radius:12px;padding:24px;text-align:center}
.reviewer-photo{width:80px;height:80px;border-radius:50%;object-fit:cover;margin:0 auto 12px;display:block;border:2px solid var(--accent)}
.reviewer-name{font-weight:700;font-size:16px;margin-bottom:4px}
.reviewer-role{color:var(--muted);font-size:13px;margin-bottom:12px}
.reviewer-stars{color:#fbbf24;font-size:20px;margin-bottom:12px}
.reviewer-quote{font-size:14px;color:var(--muted);font-style:italic;line-height:1.6}

/* ── FAQ ── */
.faq-section{background:var(--bg-alt);padding:64px 0}
.faq-section h2{font-size:clamp(22px,3vw,32px);font-weight:700;margin-bottom:8px;text-align:center}
.faq-subtitle{color:var(--muted);text-align:center;margin-bottom:40px}
.faq-list{max-width:800px;margin:0 auto;display:flex;flex-direction:column;gap:12px}
.faq-item{background:#fff;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden}
.faq-question{width:100%;text-align:left;padding:18px 20px;font-size:16px;font-weight:600;background:none;border:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:12px;transition:background .2s}
.faq-question:hover{background:#f0fdf4}
.faq-question.active{background:#f0fdf4;color:var(--accent)}
.faq-icon{font-size:20px;flex-shrink:0;transition:transform .3s;color:var(--accent)}
.faq-question.active .faq-icon{transform:rotate(45deg)}
.faq-answer{display:none;padding:0 20px 18px;color:var(--muted);font-size:15px;line-height:1.7}
.faq-answer.open{display:block}

/* ── SECTION HEADINGS ── */
.section-heading{font-size:clamp(24px,3vw,36px);font-weight:800;margin-bottom:8px}
.section-subheading{color:var(--muted);font-size:16px;margin-bottom:40px}

/* ── FOOTER ── */
.site-footer{background:var(--dark);color:#94a3b8;padding:48px 0 24px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:40px;margin-bottom:40px}
@media(max-width:768px){.footer-grid{grid-template-columns:1fr}}
.footer-brand{font-size:22px;font-weight:700;color:#fff;margin-bottom:12px}
.footer-brand span{color:var(--accent)}
.footer-desc{font-size:14px;line-height:1.7;margin-bottom:0}
.footer-col h4{color:#fff;font-size:15px;font-weight:600;margin-bottom:14px}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:8px}
.footer-col li a{color:#94a3b8;font-size:14px;transition:color .2s}
.footer-col li a:hover{color:#fff;text-decoration:none}
.footer-divider{border:none;border-top:1px solid #1e293b;margin:24px 0}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-disclaimer{font-size:13px;color:#64748b;max-width:700px;line-height:1.6}
.footer-18{font-size:24px;font-weight:800;color:#64748b;border:2px solid #334155;width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:6px;flex-shrink:0}
.gamble-aware{display:flex;align-items:center;gap:8px;font-size:13px;color:#64748b;margin-top:12px}

/* ── STICKY CTA ── */
.sticky-cta{display:none;position:fixed;bottom:0;left:0;right:0;background:var(--dark);padding:12px 20px;box-shadow:0 -2px 16px rgba(0,0,0,.3);z-index:200;align-items:center;justify-content:space-between;gap:12px}
.sticky-cta.visible{display:flex}
.sticky-cta-text{color:#f1f5f9;font-size:14px;font-weight:600}
.sticky-cta-text span{color:var(--accent)}
.sticky-close{background:none;border:none;color:#94a3b8;font-size:20px;cursor:pointer;padding:4px}
@media(min-width:769px){.sticky-cta{display:none!important}}

/* ── POPUP ── */
.popup-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.7);z-index:300;align-items:center;justify-content:center;padding:20px}
.popup-overlay.visible{display:flex}
.popup-box{background:#fff;border-radius:16px;padding:40px 32px;max-width:480px;width:100%;position:relative;text-align:center}
.popup-close{position:absolute;top:14px;right:18px;background:none;border:none;font-size:24px;cursor:pointer;color:var(--muted)}
.popup-box h3{font-size:26px;font-weight:800;margin-bottom:8px;color:var(--dark)}
.popup-box p{color:var(--muted);margin-bottom:24px;font-size:15px}
.popup-bonus{font-size:20px;font-weight:700;color:var(--accent);margin-bottom:24px;padding:16px;background:#f0fdf4;border-radius:var(--radius)}

/* ── UTILITIES ── */
.text-center{text-align:center}
.mt-8{margin-top:8px}
.mt-16{margin-top:16px}
.mt-32{margin-top:32px}
.mb-8{margin-bottom:8px}
.mb-16{margin-bottom:16px}
.badge-new{background:#fef3c7;color:#92400e;font-size:11px;font-weight:700;padding:2px 8px;border-radius:20px;vertical-align:middle}

/* === H2 BANNER SEO (generate-fal-images.py v2.0, rules v3.8.1) === */
.h2-banner-wrap {
  display: block;
  width: calc(100% + 40px);
  margin-left: -20px;
  overflow: hidden;
  line-height: 0;
  clear: both;
  margin-bottom: 24px;
}
.h2-banner-img {
  display: block;
  width: 100%;
  aspect-ratio: 3/1;
  object-fit: cover;
}
@media (max-width: 767px) {
  .h2-banner-img {
    aspect-ratio: 1/1;
    object-position: center top;
  }
}
.h2-banner-wrap figcaption {
  font-size: 11px;
  color: #6b7280;
  text-align: right;
  padding: 4px 8px 0;
  font-style: italic;
  line-height: 1.4;
}
/* === END H2 BANNER SEO === */
