/* ============================================
   PIROTS 4 — Pirots 4 focus (simple, bot-oriented)
   ============================================ */

@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2 supports variations'),
       url('../fonts/Outfit-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --bg:        #07071a;
  --bg2:       #0d0d28;
  --card:      #11112e;
  --card-lt:   #181838;

  --gold:      #f7c843;
  --gold-lt:   #ffd96a;
  --gold-dk:   #b8901e;

  --accent:      #3a8aff;
  --accent-lt:   #6fa8ff;
  --accent-dk:   #1f5cb8;
  --accent-soft: rgba(58,138,255,0.10);
  --accent-bdr:  rgba(58,138,255,0.32);

  --text:      #ffffff;
  --text-md:   rgba(255,255,255,0.78);
  --text-dim:  rgba(255,255,255,0.48);
  --border:    rgba(255,255,255,0.08);

  --header-h:  72px;
  --max-w:     1100px;

  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-pill: 50px;
  --font-d: 'Bebas Neue','Arial Black',sans-serif;
  --font-b: 'Outfit',system-ui,sans-serif;
  --tr: 0.2s ease;
}

.game-card { display: block; }
.game-info { display: flex; flex-direction: column; gap: 3px; }
html, body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(ellipse at 10% 5%, rgba(247,200,67,0.06), transparent 50%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; color: inherit; font-family: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,7,26,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--tr);
}
.site-header.scrolled { background: rgba(7,7,26,0.97); box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo-link, .logo-link-mobile { display: flex; align-items: center; text-decoration: none; }
.logo-link-mobile { display: none; }
.logo-link img { height: 48px; width: auto; display: block; filter: drop-shadow(0 2px 10px rgba(247,200,67,0.25)); }
.logo-link-mobile img { height: 40px; width: auto; display: block; filter: drop-shadow(0 2px 10px rgba(247,200,67,0.25)); }

.header-nav { display: flex; gap: 24px; }
.header-nav a { font-weight: 600; font-size: 14px; color: var(--text-md); transition: var(--tr); }
.header-nav a:hover { color: var(--gold); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.burger { width: 40px; height: 40px; display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 8px; background: rgba(255,255,255,0.04); }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--tr); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; padding: 14px 0 20px; border-top: 1px solid var(--border); background: rgba(7,7,26,0.96); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 13px 20px; color: var(--text-md); font-weight: 600; border-radius: 10px; }
.mobile-nav a:hover { color: var(--gold); background: rgba(247,200,67,0.08); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; font-family: var(--font-b); font-weight: 700; font-size: 15px; border-radius: var(--r-pill); transition: var(--tr); cursor: pointer; white-space: nowrap; text-decoration: none !important; border: 1px solid transparent; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dk)); color: #1a1303 !important; box-shadow: 0 6px 22px rgba(247,200,67,0.40); }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(247,200,67,0.55); }
.btn-ghost { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.16); color: var(--text) !important; }
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: var(--gold); color: var(--gold) !important; }

/* HERO */
.hero { position: relative; padding: 50px 0 60px; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero-bg.webp');
  background-size: cover; background-position: center;
  opacity: 0.35; z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,26,0.4) 0%, rgba(7,7,26,0.85) 70%, var(--bg) 100%);
}
.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.hero-art { margin-bottom: 18px; }
.hero-art img { max-width: 280px; width: 100%; margin: 0 auto; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6)); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: var(--r-pill); background: var(--accent-soft); border: 1px solid var(--accent-bdr); font-size: 12px; font-weight: 700; color: var(--accent-lt); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.hero-title { font-family: var(--font-d); font-size: clamp(38px, 5.5vw, 58px); line-height: 1.0; margin: 0 0 14px; letter-spacing: 0.5px; }
.hero-title .hi-gold { color: var(--gold); }
.hero-sub { font-size: 17px; color: var(--text-md); margin: 0 0 22px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 600px; margin: 0 auto 24px; }
.hero-stat { text-align: center; padding: 12px 6px; border-radius: var(--r-md); background: rgba(247,200,67,0.06); border: 1px solid rgba(247,200,67,0.18); }
.hero-stat-val { font-family: var(--font-d); font-size: 22px; color: var(--gold); line-height: 1; }
.hero-stat-lbl { font-size: 10px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.hero-btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* SECTIONS */
.section { padding: 50px 0; }
.section-eyebrow { display: inline-block; padding: 5px 12px; border-radius: var(--r-pill); background: var(--accent-soft); border: 1px solid var(--accent-bdr); color: var(--accent-lt); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 12px; }
.section-title { font-family: var(--font-d); font-size: clamp(28px, 3vw, 38px); line-height: 1.05; margin: 0 0 12px; letter-spacing: 0.5px; }
.section-title .hi { color: var(--accent-lt); }
.section-title .hi-gold { color: var(--gold); }
.section-sub { font-size: 16px; color: var(--text-md); margin: 0 0 28px; max-width: 720px; }
.section-header { margin-bottom: 28px; }

/* INFO TABLE */
.info-wrap { border-radius: var(--r-lg); background: var(--card); border: 1px solid var(--border); overflow: hidden; overflow-x: auto; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: 0; }
.info-table tr:hover { background: rgba(255,255,255,0.02); }
.info-table td { padding: 14px 22px; font-size: 14px; }
.info-table td:first-child { font-weight: 700; color: var(--gold); width: 38%; }
.info-table td:last-child { color: var(--text-md); }

/* SIMPLE FEATURE CARDS — 3 col */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat-card { padding: 22px 18px; border-radius: var(--r-md); background: var(--card); border: 1px solid var(--border); transition: var(--tr); }
.feat-card:hover { border-color: var(--accent-bdr); transform: translateY(-3px); }
.feat-icon { font-size: 30px; margin-bottom: 8px; }
.feat-title { font-family: var(--font-d); font-size: 20px; margin: 0 0 6px; letter-spacing: 0.5px; color: var(--text); }
.feat-text { font-size: 13px; color: var(--text-md); margin: 0; line-height: 1.5; }

/* CASINOS */
.casinos-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
.casino-card { display: grid; grid-template-columns: 140px 1fr auto; gap: 20px; padding: 20px 24px; border-radius: var(--r-md); background: var(--card); border: 1px solid var(--border); transition: var(--tr); align-items: center; }
.casino-card:hover { border-color: var(--accent-bdr); transform: translateY(-2px); }
.casino-rank { display: flex; align-items: center; gap: 14px; }
.casino-rank-num { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dk)); color: #1a1303; font-family: var(--font-d); font-size: 19px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(247,200,67,0.30); }
.casino-logo { width: 80px; height: 80px; border-radius: var(--r-md); background: #fff; display: flex; align-items: center; justify-content: center; padding: 8px; flex-shrink: 0; overflow: hidden; }
.casino-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.casino-info-name { font-family: var(--font-d); font-size: 22px; color: var(--text); margin: 0 0 4px; letter-spacing: 0.5px; }
.casino-rating { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.casino-rating-val { font-weight: 800; color: var(--gold); font-size: 13px; }
.casino-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.casino-perks { display: flex; flex-wrap: wrap; gap: 5px; }
.casino-perk { font-size: 11px; padding: 3px 8px; border-radius: var(--r-pill); background: var(--accent-soft); color: var(--accent-lt); font-weight: 600; }
.casino-action { display: flex; flex-direction: column; gap: 7px; align-items: stretch; }

/* PAYMENTS */
.payments-section { padding: 40px 0 50px; }
.payments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(86px, 1fr)); gap: 10px; }
.pay-item { height: 50px; background: #fff; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; padding: 6px 10px; transition: var(--tr); }
.pay-item:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.5); }
.pay-item img { max-height: 26px; max-width: 100%; object-fit: contain; }

/* FAQ */
.faq-section { padding: 50px 0; }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 900px; margin: 0 auto; }
.faq-item { border-radius: var(--r-md); background: var(--card); border: 1px solid var(--border); overflow: hidden; transition: var(--tr); }
.faq-item.open { border-color: var(--accent-bdr); }
.faq-question { padding: 17px 22px; font-family: var(--font-b); font-size: 15px; font-weight: 700; color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0; }
.faq-icon { width: 26px; height: 26px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--accent-soft); color: var(--accent-lt); font-size: 20px; transition: var(--tr); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 22px 20px; color: var(--text-md); font-size: 14px; line-height: 1.65; }
.faq-answer-inner p { margin: 0 0 10px; }
.faq-answer-inner p:last-child { margin: 0; }

/* PROSE / SEO TEXT */
.section.prose.container { max-width: 880px; }
.prose { font-size: 16px; line-height: 1.72; color: var(--text-md); }
.prose h2 { font-family: var(--font-d); font-size: clamp(26px, 2.6vw, 32px); color: var(--text); margin: 36px 0 14px; letter-spacing: 0.5px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-b); font-size: 20px; font-weight: 700; color: var(--accent-lt); margin: 24px 0 10px; }
.prose p { margin: 0 0 14px; }
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--gold); border-bottom: 1px dashed currentColor; }
.prose a:hover { color: var(--accent-lt); }
.prose ol, .prose ul, .list-content { padding-left: 1.5em !important; margin: 12px 0 18px !important; }
.prose ol, .list-content.list-ol { list-style: decimal !important; }
.prose ul, .list-content.list-ul { list-style: disc !important; }
.prose ol li, .prose ul li, .list-content li { padding: 4px 0 !important; display: list-item !important; }
.prose table, .review-table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.review-table-wrap { border-radius: var(--r-md); border: 1px solid var(--border); overflow: hidden; overflow-x: auto; margin: 18px 0; }
.review-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: 14px; }
.review-table tr:last-child td { border-bottom: 0; }
.review-table tr:nth-child(odd) td { background: rgba(255,255,255,0.02); }
.review-table tr td:first-child { font-weight: 700; color: var(--text); width: 38%; }

/* FOOTER */
.site-footer { margin-top: 40px; padding: 40px 0 22px; background: linear-gradient(180deg, transparent, rgba(7,7,26,0.9)); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 28px; }
.footer-about { font-size: 13px; color: var(--text-dim); margin: 14px 0 0; line-height: 1.55; max-width: 320px; }
.footer-col-title { font-family: var(--font-d); font-size: 16px; color: var(--gold); margin: 0 0 12px; letter-spacing: 0.7px; }
.footer-col a { display: block; padding: 4px 0; font-size: 13px; color: var(--text-md); transition: var(--tr); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding-top: 22px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.age-badge { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; background: #ff3030; color: #fff; font-family: var(--font-d); font-size: 17px; flex-shrink: 0; }
.footer-disclaimer { font-size: 12px; color: var(--text-dim); line-height: 1.55; margin: 0; max-width: 780px; }
.footer-disclaimer a { color: var(--gold); border-bottom: 1px dashed currentColor; }
.footer-copy { font-size: 12px; color: var(--text-dim); margin: 0; }

/* MEDIA */
@media (max-width: 1100px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}
@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
  .header-nav { display: none; }
  .header-actions { display: none; }
  .burger { display: flex; }
  .logo-link { display: none; }
  .logo-link-mobile { display: flex; }
  .hero { padding: 36px 0 44px; }
  .hero-title { font-size: 42px; }
  .section { padding: 44px 0; }
  .feat-grid { grid-template-columns: 1fr; }
  .casino-card { grid-template-columns: 1fr; gap: 14px; text-align: center; position: relative; padding: 32px 18px 18px; }
  .casino-rank { justify-content: center; flex-direction: column; gap: 12px; }
  .casino-rank-num { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); }
  .casino-logo { margin: 22px auto 0; }
  .casino-perks { justify-content: center; }
  .info-table td { padding: 13px 16px; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 600px) {
  html, body { overflow-x: hidden; }
  .container { padding: 0 14px; }
  .section { padding: 40px 0; }
  .section.prose.container { padding-left: 14px !important; padding-right: 14px !important; }
  .hero { padding: 26px 0 36px; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 14px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stat-val { font-size: 20px; }
  .hero-art img { max-width: 200px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }
  .section-title { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-about { max-width: none; }
}
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 28px; }
  .section-title { font-size: 22px; }
}
