/* WinCome Sports - Win Bracket Tournament Theme - PURPLE + GOLD */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Work+Sans:wght@500;700&display=swap');

:root {
  --bg: #1a0f1f;
  --bg-2: #221429;
  --primary: #b829ff;
  --primary-dark: #8a1fc0;
  --primary-light: #d77bff;
  --accent: #f5c518;
  --accent-dark: #c9a010;
  --card: #251a2e;
  --card-elev: #2f2240;
  --text: #f0e8f5;
  --text-2: #d4c5db;
  --text-muted: #a893b0;
  --border: #3a2a45;
  --soft-border: rgba(184, 41, 255, 0.25);
  --shadow: 0 8px 30px rgba(184, 41, 255, 0.15);
  --shadow-glow: 0 0 40px rgba(184, 41, 255, 0.3);
  --header-h: 64px;
  --max-w: 1200px;
  --t-fast: 0.15s ease;
  --t: 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: 'Audiowide', cursive; font-weight: 500; line-height: 1.2; color: var(--text); letter-spacing: 0.01em; }
h1 { font-size: clamp(28px, 5vw, 48px); margin-bottom: 18px; }
h2 { font-size: clamp(22px, 3.5vw, 32px); margin-bottom: 14px; }
h3 { font-size: clamp(18px, 2.5vw, 22px); margin-bottom: 10px; }
h4 { font-size: 17px; margin-bottom: 8px; }
p { margin-bottom: 14px; color: var(--text-2); }
ul, ol { margin: 0 0 14px 22px; color: var(--text-2); }
li { margin-bottom: 6px; }
strong { color: var(--accent); font-weight: 700; }
em { color: var(--primary-light); font-style: normal; }
.eyebrow {
  display: inline-block;
  font-family: 'Audiowide', cursive;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 4px 12px;
  background: rgba(245, 197, 24, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(245, 197, 24, 0.3);
}

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: rgba(26, 15, 31, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.nav-grid {
  display: flex; align-items: center; gap: 20px;
  width: 100%; height: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 20px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-family: 'Audiowide', cursive;
  font-weight: 700; font-size: 18px; text-decoration: none;
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--accent); border-radius: 8px;
  font-family: 'Audiowide', cursive; font-weight: 700; font-size: 16px;
  box-shadow: var(--shadow-glow);
}
.brand:hover { color: var(--accent); }
.brand em { color: var(--accent); font-style: normal; }
.nav-links {
  display: none; gap: 22px; align-items: center;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-2); font-size: 14px; font-weight: 600;
  text-decoration: none; padding: 6px 0; position: relative;
  transition: color var(--t-fast);
}
.nav-links a:hover, .nav-links a.is-active {
  color: var(--primary-light);
}
.header-cta {
  display: none; align-items: center; gap: 10px;
  flex-shrink: 0; margin-left: 12px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; border-radius: 8px;
  font-family: 'Audiowide', cursive; font-size: 13px;
  font-weight: 700; text-decoration: none;
  border: 1px solid transparent; white-space: nowrap;
  transition: all var(--t); cursor: pointer; letter-spacing: 0.04em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text); border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(184, 41, 255, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--bg); transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 41, 255, 0.5);
}
.btn-accent {
  background: var(--accent);
  color: var(--bg); border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); color: var(--bg); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--primary);
}
.btn-ghost:hover {
  background: rgba(184, 41, 255, 0.12);
  color: var(--primary-light);
}

/* ============ HAMBURGER ============ */
.hamburger {
  display: inline-flex; flex-direction: column;
  justify-content: space-around; align-items: center;
  width: 36px; height: 36px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 6px; cursor: pointer; padding: 7px;
  margin-left: auto; z-index: 70; position: relative;
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform var(--t);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ============ MOBILE DRAWER ============ */
.mobile-drawer {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 15, 31, 0.98);
  z-index: 55; padding: 80px 24px 32px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  display: none; height: 100vh; height: 100dvh;
  width: 100vw; overscroll-behavior: contain;
}
.mobile-drawer.is-open, .mobile-drawer.open { display: block !important; }
.mobile-drawer .drawer-section {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text); text-decoration: none;
  font-size: 16px; font-weight: 600; width: 100%;
  text-align: left; font-family: 'Work Sans', sans-serif;
}
.mobile-drawer .drawer-section:hover, .mobile-drawer .drawer-section.is-active {
  color: var(--primary-light);
}
.mobile-drawer .drawer-eyebrow {
  font-family: 'Audiowide', cursive; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent); padding: 18px 0 6px;
}

/* ============ RESPONSIVE HEADER ============ */
@media (min-width: 900px) {
  .nav-links { display: flex !important; }
  .header-cta { display: inline-flex !important; }
  .hamburger { display: none !important; }
}

/* ============ PROMO BAR ============ */
.promo-bar {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
  color: var(--text); text-align: center;
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
}
.promo-bar a { color: var(--accent); text-decoration: underline; font-weight: 700; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 60px;
  background: radial-gradient(ellipse at top, rgba(184, 41, 255, 0.18), transparent 60%), var(--bg);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 197, 24, 0.08), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(184, 41, 255, 0.12), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center; max-width: var(--max-w);
  margin: 0 auto; padding: 0 20px;
  position: relative; z-index: 2;
}
.hero h1 {
  background: linear-gradient(135deg, var(--text) 0%, var(--primary-light) 50%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: 18px; color: var(--text-2); margin-bottom: 24px;
  max-width: 580px;
}
.hero-cta-pair { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted);
}
.hero-meta strong { color: var(--accent); font-family: 'Audiowide', cursive; font-size: 22px; display: block; }
.hero-banner {
  width: 100%; max-width: 560px; margin: 0 auto;
  border-radius: 20px; box-shadow: var(--shadow-glow);
  border: 1px solid var(--border);
}
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin-top: 20px;
}
.hero-stat {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px;
  text-align: center;
}
.hero-stat-num {
  font-family: 'Audiowide', cursive; font-size: 28px;
  color: var(--accent); display: block;
}
.hero-stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 48px; }
  .hero { padding: 100px 0 80px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ============ BAND / SECTION ============ */
.band {
  padding: 56px 0; position: relative;
}
.band-elev-1 { background: var(--bg-2); }
.band-elev-2 { background: var(--card); }
.band-title {
  text-align: center; margin-bottom: 12px;
}
.band-intro {
  text-align: center; max-width: 720px; margin: 0 auto 36px;
  color: var(--text-2); font-size: 17px;
}
.container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
}

/* ============ CARDS ============ */
.card-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  display: flex; flex-direction: column; height: 100%;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}
.card h3 { color: var(--text); margin-bottom: 10px; }
.card p { color: var(--text-2); flex: 1; margin-bottom: 12px; }
.card .card-meta {
  font-size: 12px; color: var(--accent);
  font-family: 'Audiowide', cursive; text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 8px;
}
.card .card-link {
  color: var(--primary-light); font-weight: 700;
  font-size: 14px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
}
.card .card-link:hover { color: var(--accent); }

/* ============ DATA GRID ============ */
.data-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin: 20px 0;
}
@media (min-width: 720px) { .data-grid { grid-template-columns: repeat(4, 1fr); } }

.data-card {
  background: linear-gradient(135deg, var(--card) 0%, var(--card-elev) 100%);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 20px; text-align: center;
  position: relative; overflow: hidden;
}
.data-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.data-num {
  font-family: 'Audiowide', cursive; font-size: 32px;
  color: var(--accent); display: block; margin-bottom: 6px;
}
.data-label {
  font-size: 12px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}

/* ============ STEP GRID ============ */
.step-grid {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
  margin: 20px 0;
}
@media (min-width: 720px) { .step-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .step-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px; position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--accent); border-radius: 50%;
  font-family: 'Audiowide', cursive; font-size: 18px; font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 0 20px rgba(184, 41, 255, 0.4);
}
.step-card h3 { color: var(--text); margin-bottom: 8px; }

/* ============ INLINE IMAGE ROW ============ */
.inline-image-row {
  display: grid; gap: 18px; margin: 28px 0;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .inline-image-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .inline-image-row { grid-template-columns: repeat(3, 1fr); } }

.inline-image-row .ii-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.inline-image-row img {
  width: 100%; height: 180px; object-fit: cover;
}
.inline-image-row .ii-body { padding: 16px; }
.inline-image-row h4 { color: var(--text); margin-bottom: 6px; font-size: 16px; }
.inline-image-row p { color: var(--text-2); font-size: 14px; margin: 0; }

/* ============ LOOSE CARD ============ */
.loose-card {
  background: var(--card); border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 10px; padding: 22px; margin: 16px 0;
}
.loose-card h3 { color: var(--primary-light); margin-bottom: 10px; }
.loose-card p:last-child { margin-bottom: 0; }

/* ============ FAQ ============ */
.faq-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
  margin: 20px 0;
}
@media (min-width: 720px) { .faq-grid { grid-template-columns: repeat(2, 1fr); } }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.faq-item h3 {
  font-family: 'Work Sans', sans-serif; font-size: 16px;
  color: var(--accent); margin-bottom: 8px; font-weight: 700;
}
.faq-item p { color: var(--text-2); margin: 0; font-size: 14px; }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 18px; padding: 40px 28px; margin: 40px 0;
  text-align: center; color: var(--text);
  box-shadow: var(--shadow-glow);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(245, 197, 24, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: var(--text); position: relative; }
.cta-band p { color: var(--text); position: relative; opacity: 0.95; }
.cta-band .hero-cta-pair { justify-content: center; position: relative; }

/* ============ TABLE ============ */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 18px 0; border-radius: 10px; }
.data-table {
  width: 100%; border-collapse: collapse;
  background: var(--card); border-radius: 10px; overflow: hidden;
}
.data-table th, .data-table td {
  padding: 12px 14px; text-align: left;
  border-bottom: 1px solid var(--border); font-size: 14px;
}
.data-table th {
  background: var(--card-elev); color: var(--accent);
  font-family: 'Audiowide', cursive; font-weight: 500;
  text-transform: uppercase; font-size: 12px; letter-spacing: 0.08em;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover { background: rgba(184, 41, 255, 0.06); }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  background: var(--card); border-bottom: 1px solid var(--border);
  padding: 14px 0; font-size: 13px; color: var(--text-muted);
}
.breadcrumb ol {
  display: flex; gap: 8px; list-style: none; margin: 0;
  flex-wrap: wrap; max-width: var(--max-w); padding: 0 20px; margin: 0 auto;
}
.breadcrumb li { margin: 0; }
.breadcrumb li:not(:last-child)::after {
  content: '/'; margin-left: 8px; color: var(--border);
}
.breadcrumb a { color: var(--primary-light); }

/* ============ COMPLIANCE NOTICE ============ */
.compliance {
  background: rgba(245, 197, 24, 0.08);
  border-left: 4px solid var(--accent);
  padding: 16px 20px; margin: 24px 0; border-radius: 8px;
  font-size: 13px; color: var(--text-2);
}
.compliance strong { color: var(--accent); }

/* ============ TRUST ROW ============ */
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 24px; margin: 24px 0; padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 13px;
  font-family: 'Audiowide', cursive; letter-spacing: 0.04em;
}
.trust-item::before {
  content: '✓'; color: var(--accent); font-weight: 700;
  width: 22px; height: 22px;
  background: rgba(245, 197, 24, 0.15);
  border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; font-size: 13px;
}

/* ============ HUB NAV ============ */
.hub-nav {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  margin: 20px 0;
}
@media (min-width: 720px) { .hub-nav { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .hub-nav { grid-template-columns: repeat(4, 1fr); } }
.hub-nav a {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px; background: var(--card);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); text-decoration: none;
  transition: all var(--t-fast);
}
.hub-nav a:hover { border-color: var(--primary); background: var(--card-elev); transform: translateY(-2px); }
.hub-nav strong { color: var(--primary-light); font-family: 'Audiowide', cursive; font-size: 14px; }
.hub-nav span { color: var(--text-muted); font-size: 12px; }

/* ============ LATEST GUIDES ============ */
.posts-grid {
  display: grid; gap: 18px; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
}
.post-card img { width: 100%; height: 180px; object-fit: cover; }
.post-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.post-card-meta {
  font-family: 'Audiowide', cursive; font-size: 11px;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 8px;
}
.post-card h3 { font-size: 17px; margin-bottom: 8px; }
.post-card p { color: var(--text-2); font-size: 14px; flex: 1; }
.post-card a.read-more {
  color: var(--primary-light); font-weight: 700; font-size: 13px;
  text-decoration: none; margin-top: 12px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 56px 0 24px; margin-top: 60px;
  color: var(--text-muted); font-size: 14px;
}
.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  margin-bottom: 36px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-col h4 {
  color: var(--accent); font-family: 'Audiowide', cursive;
  font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 14px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-2); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: var(--primary-light); }
.footer-col p { color: var(--text-muted); font-size: 13px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px;
  text-align: center; font-size: 12px; color: var(--text-muted);
}
.footer-bottom p { margin-bottom: 6px; font-size: 12px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 720px) {
  .band { padding: 40px 0; }
  .hero { padding: 56px 0 36px; }
  .hero p.lead { font-size: 16px; }
  .hero-cta-pair .btn { flex: 1; min-width: 140px; }
  .data-num { font-size: 26px; }
  .hero-stat-num { font-size: 24px; }
  .card { padding: 18px; }
  .cta-band { padding: 30px 20px; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .data-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-nav { grid-template-columns: 1fr; }
  h1 { font-size: 26px; }
}
/* Mobile hero cap - fix for site 79 hero 955px -> 720px */
@media (max-width: 899px) {
  .hero-band,
  #hero,
  .hero,
  .hero-section,
  [class*="hero"] {
    max-height: 720px !important;
    min-height: 480px !important;
    overflow: hidden !important;
  }
  .hero { padding: 56px 0 32px !important; }
  .hero-grid { gap: 18px !important; }
  .hero h1 { font-size: 24px !important; margin-bottom: 10px !important; }
  .hero p.lead { font-size: 14px !important; margin-bottom: 14px !important; }
  .hero-cta-pair { margin-bottom: 14px !important; }
  .hero-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; margin-top: 12px !important; }
  .hero-stat { padding: 8px 6px !important; }
  .hero-stat-num { font-size: 18px !important; }
  .hero-stat-label { font-size: 10px !important; }
  .hero-banner { max-width: 100% !important; border-radius: 14px !important; }
}
