/* Bold Sports – BigWinStaets.com */
:root {
  --bg: #0c1222;
  --card: #151d32;
  --accent: #00c853;
  --accent2: #69f0ae;
  --danger: #ff1744;
  --text: #eceff1;
  --muted: #90a4ae;
  --border: rgba(0, 200, 83, 0.3);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Trebuchet MS', 'Segoe UI', sans-serif;
  background: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='50' rx='45' ry='35' fill='rgba(0,200,83,0.03)'/%3E%3Cpath fill='none' stroke='rgba(0,200,83,0.06)' stroke-width='.5' d='M50 15v70M15 50h70'/%3E%3Ccircle cx='50' cy='50' r='3' fill='rgba(0,200,83,0.05)'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(135deg, transparent 40%, rgba(0, 200, 83, 0.03) 50%, transparent 60%);
  background-size: 200% 200%;
  animation: green-sweep 15s ease-in-out infinite;
}
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 80% 90%, rgba(0, 200, 83, 0.06) 0%, transparent 50%);
}
@keyframes green-sweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes glow-green {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 200, 83, 0.2); }
  50% { box-shadow: 0 0 35px rgba(0, 200, 83, 0.35); }
}
.top-bar {
  padding: 0.5rem 1rem;
  background: rgba(0,0,0,0.4);
  border-bottom: 3px solid var(--accent);
  text-align: center;
}
.top-bar a { color: var(--muted); text-decoration: none; font-size: 0.8rem; margin: 0 0.75rem; }
.top-bar a:hover { color: var(--accent2); }
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--card);
  border-bottom: 3px solid var(--accent);
  padding: 1rem 1.25rem;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-nav-left .header-brand-bigw { text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.logo:hover { color: var(--accent); }
.logo .age { color: var(--danger); font-size: 0.7em; margin-left: 0.3rem; }
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nav a {
  padding: 0.5rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  transition: all 0.2s;
}
.nav a:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.main { max-width: 1100px; margin: 0 auto; padding: 2rem 1.25rem 3rem; }
.hero {
  text-align: center;
  padding: 2rem 0;
  margin-bottom: 2rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 200, 83, 0.06);
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
  opacity: 0.6;
}
.hero h1 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.03em; }
.hero p { color: var(--muted); font-size: 1rem; }
.info-bigw-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) { .info-bigw-four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .info-bigw-four { grid-template-columns: 1fr; } }
.info-bigw-four .tile {
  padding: 1rem;
  text-align: center;
  background: var(--card);
  border: 2px dashed var(--border);
  border-radius: 8px;
}
.info-bigw-four .tile strong { display: block; font-size: 0.85rem; color: var(--accent); margin-bottom: 0.35rem; }
.info-bigw-four .tile span { font-size: 0.78rem; color: var(--muted); }
.info-bigw-callout {
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(0, 200, 83, 0.08);
  border-left: 6px solid var(--accent);
  border-radius: 0 10px 10px 0;
}
.info-bigw-callout p { font-size: 1rem; color: var(--text); margin: 0; line-height: 1.6; }
.info-bigw-callout .tag { font-size: 0.8rem; color: var(--accent); margin-top: 0.5rem; font-weight: 700; }
.info-bigw-twosupport {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (max-width: 550px) { .info-bigw-twosupport { grid-template-columns: 1fr; } }
.info-bigw-twosupport .box { padding: 1.25rem; background: var(--card); border: 2px solid var(--border); border-radius: 10px; }
.info-bigw-twosupport .box h4 { font-size: 1rem; color: var(--accent); margin-bottom: 0.5rem; }
.info-bigw-twosupport .box p { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.5; }
.section-head {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
/* Showcase 3: Top N ribbon badges */
.grid.showcase-ribbon {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.grid:not(.showcase-ribbon) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.showcase-ribbon .card {
  position: relative;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  padding-top: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.showcase-ribbon .card-rank {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, var(--accent) 0%, #008a3a 100%);
  color: var(--bg);
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 0 10px 0 12px;
  box-shadow: -2px 2px 8px rgba(0,0,0,0.3);
}
.card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card { transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s; }
.card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 200, 83, 0.2), 0 0 40px rgba(0, 200, 83, 0.15);
  animation: glow-green 2.5s ease-in-out infinite;
  transform: translateY(-2px);
}
.card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.card-head img { height: 44px; width: auto; max-width: 140px; object-fit: contain; background: #fff; border-radius: 8px; padding: 4px; }
.card-head h2 { font-size: 1.15rem; font-weight: 800; }
.card-meta { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.75rem; }
.card p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1rem; }
.card-cta {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 6px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.card-cta:hover {
  background: var(--accent2);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.5), 0 0 30px rgba(105, 240, 174, 0.3);
}
.card-cta { transition: background 0.2s, transform 0.2s, box-shadow 0.25s; }
.card .badge { font-size: 0.7rem; color: var(--danger); font-weight: 700; }
.rg-block {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 10px;
}
.rg-block h2 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--accent); }
.rg-block p, .rg-block li { color: var(--muted); font-size: 0.95rem; }
.rg-block ul { margin-left: 1.25rem; margin-top: 0.5rem; }
.faq-block { margin-top: 2rem; }
.faq-block details {
  margin-bottom: 0.5rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--card);
}
.faq-block summary { padding: 1rem 1.25rem; cursor: pointer; font-weight: 700; }
.faq-block summary:hover { color: var(--accent); }
.faq-block .ans { padding: 1rem 1.25rem; border-top: 2px solid var(--border); color: var(--muted); font-size: 0.92rem; }
.footer {
  margin-top: 3rem;
  padding: 2rem 1.25rem;
  background: var(--card);
  border-top: 3px solid var(--accent);
}
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer .regs { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.footer .regs a { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--muted); text-decoration: none; font-size: 0.85rem; }
.footer .regs a:hover { color: var(--accent2); }
.footer .regs img { height: 24px; width: auto; }
.footer .links { margin-bottom: 1rem; }
.footer .links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; margin: 0 0.5rem; }
.footer .links a:hover { color: var(--accent); }
.footer .legal { font-size: 0.78rem; color: var(--muted); }
.page-content { max-width: 800px; margin: 0 auto; padding: 2rem 1.25rem 3rem; }
.page-content h1 { font-size: 1.75rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.03em; }
.page-content h2 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; color: var(--accent); }
.page-content p, .page-content li { margin-bottom: 0.75rem; color: var(--muted); }
.page-content ul { margin-left: 1.25rem; }
/* Disclaimer overlay – BigWinStaets */
.disclaimer-bigw {
  position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem; pointer-events: auto;
}
.disclaimer-bigw[hidden] { display: none !important; }
.disclaimer-bigw-box {
  max-width: 420px; background: var(--card); border: 3px solid var(--accent);
  border-radius: 12px; padding: 2rem; text-align: center;
}
.disclaimer-bigw h2 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--accent); text-transform: uppercase; }
.disclaimer-bigw p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.5; }
.disclaimer-bigw-btns { display: flex; flex-direction: column; gap: 0.75rem; }
.disclaimer-bigw-btns button { padding: 0.75rem 1.25rem; border-radius: 8px; cursor: pointer; font-weight: 700; font-size: 0.95rem; }
#disclaimer-enter { background: var(--accent); color: var(--bg); border: none; }
#disclaimer-leave { background: transparent; color: var(--muted); border: 2px solid var(--muted); }

/* Info blocks – BigWinStaets */
.info-bigw-strip {
  padding: 1rem 1.25rem; background: rgba(0, 200, 83, 0.08); border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0; margin-bottom: 1.25rem; font-size: 0.95rem; color: var(--muted);
}
.info-bigw-strip-alt { border-left: none; border-top: 3px solid var(--accent); border-radius: 8px; margin-top: 1.5rem; }
.info-bigw-twocol {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem;
}
.info-bigw-twocol div { padding: 1.25rem; background: var(--card); border: 2px solid var(--border); border-radius: 10px; }
.info-bigw-twocol h3 { font-size: 1rem; color: var(--accent); margin-bottom: 0.5rem; }
.info-bigw-twocol p { font-size: 0.9rem; color: var(--muted); margin: 0; }
.info-bigw-list {
  padding: 1.25rem; background: var(--card); border: 2px solid var(--border); border-radius: 10px;
  margin-bottom: 1.5rem; border-left: 4px solid var(--accent);
}
.info-bigw-list h3 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--text); }
.info-bigw-list ul { margin: 0 0 0 1rem; color: var(--muted); font-size: 0.9rem; }
.info-bigw-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.info-bigw-card { padding: 1rem; background: var(--card); border: 2px solid var(--border); border-radius: 8px; }
.info-bigw-card h4 { font-size: 0.9rem; color: var(--accent); margin-bottom: 0.4rem; }
.info-bigw-card p { font-size: 0.82rem; color: var(--muted); margin: 0; }
@media (max-width: 700px) { .info-bigw-twocol { grid-template-columns: 1fr; } .info-bigw-cards { grid-template-columns: 1fr; } }

/* Header tagline */
.header-brand-bigw { display: flex; flex-direction: column; gap: 0.25rem; }
.header-tagline-bigw { font-size: 0.8rem; color: var(--muted); font-style: italic; }

/* Footer 3-col */
.footer-bigw .footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; text-align: left; }
.footer-bigw-row .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 600px) { .footer-bigw .footer-inner { grid-template-columns: 1fr; text-align: center; } }
.footer-col-bigw h4 { font-size: 0.8rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.footer-bigw .regs, .footer-bigw .links { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0; }
.footer-bigw .legal { margin: 0; }

/* Cookie bar – top strip */
.cookie-bar-top {
  top: 0; left: 0; right: 0; bottom: auto;
  border-radius: 0; border-left: none; border-right: none; border-top: none; border-bottom: 3px solid var(--accent);
  flex-direction: row; justify-content: center; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.cookie-bar .cookie-msg { flex: 1; min-width: 200px; font-size: 0.9rem; }
.cookie-bar .cookie-actions { display: flex; gap: 0.5rem; }
.cookie-bar button { padding: 0.5rem 1rem; border-radius: 6px; cursor: pointer; font-weight: 700; }
#accept-cookies { background: var(--accent); color: var(--bg); border: none; }
#decline-cookies { background: transparent; color: var(--muted); border: 2px solid var(--muted); }
