/* ═══════════════════════════════════════════════════════
   TRIVIALIS HOSTING — MASTER STYLESHEET
   trivialishosting.com
   ═══════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background-color: #0b1530;
  color: #ffffff;
  overflow-x: hidden;
}

/* ── DESIGN TOKENS ── */
:root {
  --navy:        #0b1530;
  --navy-mid:    #111e42;
  --navy-card:   #141f45;
  --gold:        #f5a623;
  --gold-light:  #ffc53d;
  --cyan:        #00d4ff;
  --white:       #ffffff;
  --off-white:   #dde5f5;
  --muted:       #7a8fb5;
  --border:      rgba(245, 166, 35, 0.22);
  --border-soft: rgba(255, 255, 255, 0.07);
  --rainbow:     linear-gradient(135deg, #ff4e50, #f9d423, #00c3ff, #a855f7, #ec4899);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
}
p { line-height: 1.72; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--cyan); }
strong { font-weight: 600; color: var(--white); }

/* ── LAYOUT CONTAINERS ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.container-wide {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section { padding: 5rem 2.5rem; }
.section-mid { padding: 5rem 2.5rem; background: var(--navy-mid); }

/* ── SECTION LABELS ── */
.eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 1.4rem;
}
.section-eye {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
  margin-bottom: 1rem;
}
.section-title-xl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.97;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--off-white);
  line-height: 1.72;
  max-width: 640px;
}
.section-sub-center {
  font-size: 1.05rem;
  color: var(--off-white);
  line-height: 1.72;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ── TEXT GRADIENT ── */
.grad {
  background: var(--rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.3), transparent);
}

/* ── BUTTONS ── */
.btn-gold {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 0.88rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); }

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 0.88rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.28);
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

.btn-outline-gold {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  padding: 0.88rem 2rem;
  border-radius: 4px;
  border: 1px solid var(--gold);
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.btn-sm {
  font-size: 0.88rem;
  padding: 0.62rem 1.25rem;
}

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-row-center {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 80px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(11, 21, 48, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 3px 0 0 transparent;
  position: relative;
}
nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rainbow);
}
.nav-logo img {
  height: 58px;
  display: block;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-login { color: var(--muted) !important; }
.nav-login:hover { color: var(--gold) !important; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.42rem 1.1rem;
  border-radius: 4px;
  font-weight: 800 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }
.nav-cta.active { background: var(--gold-light) !important; }

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 210;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU DRAWER */
.nav-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 21, 48, 0.98);
  backdrop-filter: blur(16px);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer a.active { color: var(--gold); }
.nav-drawer .nav-login-drawer { color: var(--muted); }
.nav-drawer .nav-cta-drawer {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: 1.4rem;
  white-space: nowrap;
}
.nav-drawer .nav-cta-drawer:hover { background: var(--gold-light); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 2.5rem 4.5rem;
  text-align: center;
}
.page-hero-poly {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/game-display-screen_color.png') center / cover no-repeat;
  opacity: 0.13;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(11,21,48,0.55) 0%, #0b1530 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
}

/* ── CARDS ── */
.card {
  background: var(--navy-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: transform 0.25s;
}
.card:hover { transform: translateY(-4px); }

.card-gold-top { border-top: 3px solid var(--gold); }
.card-left-gold { border-left: 4px solid var(--gold); }

.card-rainbow-top::before {
  content: '';
  display: block;
  height: 3px;
  background: var(--rainbow);
  margin: -2rem -1.75rem 1.5rem;
  border-radius: 10px 10px 0 0;
}

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ── AD SLOTS ── */
.ad-label-text {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-bottom: 0.35rem;
}
.ad-top {
  background: rgba(6, 12, 32, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1rem 1rem;
}
.ad-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2.5rem;
  background: rgba(8, 14, 36, 0.6);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.ad-below-footer {
  background: rgba(8, 14, 36, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.ad-sidebar-wrap {
  background: rgba(10, 18, 44, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── NEWSLETTER SECTION ── */
.newsletter-section {
  background: var(--navy-mid);
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--border-soft);
}
.newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.newsletter-sub {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.7;
  margin-top: 0.75rem;
}
.newsletter-form {
  background: rgba(11, 21, 48, 0.6);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}

/* Override MailerLite default styles to match brand */
.newsletter-form .ml-form-embedWrapper {
  background-color: transparent !important;
  width: 100% !important;
  max-width: 100% !important;
}
.newsletter-form .ml-form-embedBody {
  padding: 0 !important;
}
.newsletter-form .ml-form-embedContent {
  display: none; /* hide MailerLite's default headline — we use our own */
}
.newsletter-form input[type="email"] {
  background: rgba(255,255,255,0.08) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 4px !important;
  padding: 0.85rem 1rem !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 1rem !important;
  width: 100% !important;
  margin-bottom: 1rem;
}
.newsletter-form input[type="email"]::placeholder { color: var(--muted) !important; }
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold) !important;
}
.newsletter-form .ml-form-embedSubmit button.primary {
  background-color: var(--gold) !important;
  border: none !important;
  border-radius: 4px !important;
  color: var(--navy) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 2rem !important;
  width: 100% !important;
  cursor: pointer;
  transition: background 0.2s !important;
}
.newsletter-form .ml-form-embedSubmit button.primary:hover {
  background-color: var(--gold-light) !important;
}
.newsletter-form .ml-form-successContent h4 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 0.5rem !important;
}
.newsletter-form .ml-form-successContent p {
  color: var(--off-white) !important;
  font-size: 0.95rem !important;
}

/* Alnic footer credit */
.footer-alnic {
  color: var(--muted) !important;
  font-size: 0.72rem;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.footer-alnic:hover { opacity: 1; color: var(--gold) !important; }

@media (max-width: 800px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── FOOTER ── */
footer {
  position: relative;
  overflow: hidden;
  background-color: var(--navy-mid);
  background-image: url('images/poly-bg.png');
  background-repeat: repeat;
  background-size: 520px 520px;
  background-position: center;
  border-top: none;
  padding: 3rem 2.5rem 2rem;
}
footer::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rainbow);
  z-index: 2;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 21, 48, 0.78);
  pointer-events: none;
  z-index: 0;
}
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.footer-logo img {
  height: 38px;
  opacity: 0.88;
  display: block;
}
.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social-link:hover { color: var(--gold); }
.footer-social-icon { font-size: 1.2rem; }
.footer-right { text-align: right; }
.footer-contact-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: var(--cyan); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.65;
}
.footer-copy a { color: var(--muted); }
.footer-copy a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(245,166,35,0.6); }
  50%       { box-shadow: 0 0 18px rgba(245,166,35,0.9); }
}

/* ══════════════════════════════════════════
   PAGE-SPECIFIC STYLES
   ══════════════════════════════════════════ */

/* ── INDEX: HERO ── */
.hero {
  background-color: var(--navy);
  padding: 0;
  overflow: hidden;
}

/* HEADLINE BAND — solid dark navy, no poly visible here */
.hero-headline-band {
  background: var(--navy);
  text-align: center;
  padding: 3.5rem 2.5rem 2.5rem;
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.93;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0;
}

/* PHOTO STAGE
   - poly pattern is the background of this band only
   - player photo sits centered on top of it
   - photo's own dark edges create the vignette so poly shows on sides
*/
.hero-photo-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('images/poly-bg.png') repeat center center;
  background-size: 520px 520px;
  padding: 0;
  line-height: 0;
}
.hero-photo-stage img {
  display: block;
  width: 72%;
  max-width: 1060px;
  height: auto;
  position: relative;
  z-index: 1;
}

/* eyebrow pill — centered bottom of photo */
.hero-photo-eyebrow {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(11, 21, 48, 0.82);
  border: 1px solid rgba(245, 166, 35, 0.5);
  padding: 0.35rem 1.1rem;
  border-radius: 3px;
  backdrop-filter: blur(6px);
}

/* CONTENT BAND — dark navy below the photo stage */
.hero-content {
  background: var(--navy);
  padding: 3rem 2.5rem 3.5rem;
}
.hero-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 3rem;
  align-items: center;
}
.hero-copy {
  font-size: 1.12rem;
  line-height: 1.78;
  color: var(--off-white);
  max-width: 520px;
  margin-bottom: 2rem;
}

/* ── INDEX: FREE ANSWER CARD ── */
.free-answer-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  background: linear-gradient(145deg, #182a5e, #0e1c48);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 0 40px rgba(245,166,35,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.free-answer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 65px rgba(245,166,35,0.3);
}
.fac-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(245,166,35,0.5));
}
.fac-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.fac-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.2rem;
}
.fac-sub { font-size: 0.84rem; color: var(--muted); }
.fac-arrow { margin-left: auto; flex-shrink: 0; font-size: 1.5rem; font-weight: 900; color: var(--gold); }

/* ── INDEX: PHILOSOPHY QUOTE ── */
.philosophy-section {
  padding: 5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.philosophy-quote {
  background: linear-gradient(145deg, #182a5e, #0e1c48);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 2.5rem 3rem;
  position: relative;
}
.philosophy-quote::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(245,166,35,0.12);
  line-height: 1;
  pointer-events: none;
}
.philosophy-quote-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
  color: var(--off-white);
  max-width: 820px;
}
.philosophy-quote-text em {
  font-style: normal;
  color: var(--gold);
}

/* ── INDEX: PILLARS ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.pillar {
  background: rgba(11, 21, 48, 0.85);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 2rem 1.6rem;
  border-top: 3px solid transparent;
  transition: transform 0.25s;
}
.pillar:hover { transform: translateY(-4px); }
.pillar:nth-child(1) { border-top-color: #ff4e50; }
.pillar:nth-child(2) { border-top-color: #f9d423; }
.pillar:nth-child(3) { border-top-color: #00c3ff; }
.pillar:nth-child(4) { border-top-color: #a855f7; }
.pillar-icon { font-size: 2.2rem; margin-bottom: 0.9rem; }
.pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
}
.pillar-body { font-size: 0.9rem; line-height: 1.65; color: var(--off-white); }

/* ── INDEX: PHOTO BREAK ── */
.photo-break { position: relative; height: 340px; overflow: hidden; }
.photo-break img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.photo-break-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,21,48,0.55) 0%, rgba(11,21,48,0.45) 40%, rgba(11,21,48,0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-break-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  max-width: 680px;
  padding: 0 2rem;
}

/* ── INDEX: INSTAGRAM SECTION ── */
.instagram-section {
  padding: 5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.ig-cta-block {
  display: block;
  text-decoration: none;
  margin-top: 2rem;
  background: linear-gradient(145deg, #182a5e, #0e1c48);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ig-cta-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(245,166,35,0.2);
}
.ig-cta-inner {
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.ig-cta-icon { font-size: 3rem; filter: drop-shadow(0 0 12px rgba(245,166,35,0.4)); }
.ig-cta-handle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ig-cta-sub {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.65;
  max-width: 520px;
}
.ig-cta-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  margin-top: 0.5rem;
  display: inline-block;
  transition: background 0.2s;
}
.ig-cta-block:hover .ig-cta-btn { background: var(--gold-light); }
.ig-placeholder { text-align: center; }
.ig-placeholder-icon { font-size: 3rem; margin-bottom: 1rem; }
.ig-placeholder-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.ig-placeholder-sub { font-size: 0.85rem; color: var(--muted); }

/* Instagram CTA block */
.ig-cta-block {
  display: block;
  text-decoration: none;
  margin-top: 2rem;
  background: linear-gradient(145deg, #182a5e, #0e1c48);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ig-cta-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(245,166,35,0.2);
}
.ig-cta-inner {
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.ig-cta-icon { font-size: 3rem; filter: drop-shadow(0 0 12px rgba(245,166,35,0.4)); }
.ig-cta-handle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ig-cta-sub {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.65;
  max-width: 520px;
}
.ig-cta-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  margin-top: 0.5rem;
  display: inline-block;
  transition: background 0.2s;
}
.ig-cta-block:hover .ig-cta-btn { background: var(--gold-light); }
.instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 1.5rem;
  transition: color 0.2s;
}
.instagram-cta:hover { color: var(--cyan); }

/* ── GAMES PAGE ── */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.show-card {
  background: var(--navy-card);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.show-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 5px;
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
.show-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}
.show-venue { font-size: 0.9rem; color: var(--off-white); margin-bottom: 0.1rem; }
.show-day { font-size: 0.8rem; color: var(--muted); }
.show-more { margin-top: 1.5rem; font-size: 0.88rem; color: var(--muted); }
.show-more a { color: var(--gold); }

.format-card {
  background: rgba(11, 21, 48, 0.9);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s;
}
.format-card:hover { transform: translateY(-4px); }
.format-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.format-card:nth-child(1)::before { background: #f9d423; }
.format-card:nth-child(2)::before { background: var(--rainbow); }
.format-card:nth-child(3)::before { background: #00c3ff; }
.format-card:nth-child(4)::before { background: #a855f7; }
.format-card:nth-child(5)::before { background: #ec4899; }
.format-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.format-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.format-body { font-size: 0.92rem; line-height: 1.68; color: var(--off-white); }
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }

/* ── FOR BARS PAGE ── */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.audience-card {
  background: var(--navy-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.audience-card:hover { transform: translateY(-5px); border-color: rgba(245,166,35,0.35); }
.audience-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; }
.audience-card:nth-child(1)::after { background: linear-gradient(90deg, #f9d423, #ff4e50); }
.audience-card:nth-child(2)::after { background: linear-gradient(90deg, #00c3ff, #a855f7); }
.audience-card:nth-child(3)::after { background: linear-gradient(90deg, #a855f7, #ec4899); }
.audience-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(245, 166, 35, 0.18);
  margin-bottom: 0.5rem;
}
.audience-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.audience-body { font-size: 0.92rem; line-height: 1.7; color: var(--off-white); margin-bottom: 1.25rem; }
.audience-examples { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}
.pitch-lead {
  font-size: 1.12rem;
  line-height: 1.82;
  color: var(--off-white);
  margin-bottom: 2rem;
}
.pitch-lead p + p { margin-top: 1.1rem; }
.pitch-bullets { list-style: none; margin: 2rem 0; display: flex; flex-direction: column; gap: 0.9rem; }
.pitch-bullets li { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 1rem; line-height: 1.6; color: var(--off-white); }
.bullet-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }

/* ── BECOME A HOST PAGE ── */
.host-lead {
  font-size: 1.2rem;
  line-height: 1.82;
  color: var(--off-white);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.host-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin: 3.5rem 0; }
.host-pillar {
  background: var(--navy-card);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.75rem;
  transition: transform 0.2s;
}
.host-pillar:hover { transform: translateY(-3px); }
.host-pillar-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.host-pillar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.host-pillar-body { font-size: 0.9rem; line-height: 1.65; color: var(--off-white); }
.host-cta-box {
  background: linear-gradient(145deg, #182a5e, #0e1c48);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
}
.host-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.host-cta-body {
  font-size: 1rem;
  color: var(--off-white);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* ── CONTACT PAGE ── */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 4rem; }
.contact-method {
  background: var(--navy-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.contact-method:hover { transform: translateY(-4px); border-color: rgba(245,166,35,0.35); }
.contact-method-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-method-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.contact-method-body { font-size: 0.9rem; color: var(--off-white); line-height: 1.6; margin-bottom: 1.25rem; }
.contact-method-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s;
}
.contact-method-link:hover { color: var(--cyan); }
.contact-closing {
  background: linear-gradient(145deg, #182a5e, #0e1c48);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.75rem 2.5rem;
}
.contact-closing-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.contact-closing-body { font-size: 1rem; color: var(--off-white); line-height: 1.72; max-width: 580px; }

/* ── FREE ANSWER PAGE ── */
.fa-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  align-items: start;
}
.fa-intro { font-size: 1.05rem; color: var(--off-white); line-height: 1.65; max-width: 500px; margin-bottom: 2rem; }
.answer-card {
  background: linear-gradient(145deg, #182a5e, #0e1c48);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 0 60px rgba(245,166,35,0.15);
  position: relative;
  overflow: hidden;
}
.answer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rainbow);
}
.answer-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.venue-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
  padding: 0.28rem 0.72rem;
  border-radius: 4px;
}
.answer-date { font-size: 0.85rem; color: var(--muted); }
.q-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.question-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1.3;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.a-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.answer-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
}
.answer-hint { font-size: 0.88rem; color: var(--muted); margin-top: 0.7rem; line-height: 1.5; font-style: italic; }
.reveal-overlay {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #182a5e, #0e1c48);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.45s ease;
}
.reveal-overlay.gone { opacity: 0; pointer-events: none; }
.reveal-icon { font-size: 3.5rem; margin-bottom: 0.9rem; animation: rpulse 2s ease-in-out infinite; }
@keyframes rpulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
.reveal-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.reveal-sub { font-size: 0.88rem; color: var(--muted); }
.answer-note {
  background: rgba(17, 30, 66, 0.6);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.answer-note strong { color: var(--off-white); }
.show-list-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.show-list-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.show-list-row:last-child { border-bottom: none; }
.show-list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(245,166,35,0.55);
}
.show-list-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}
.show-list-venue { font-size: 0.8rem; color: var(--muted); }
.fa-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 88px; }
.sidebar-promo {
  background: linear-gradient(145deg, #182a5e, #0e1c48);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.sidebar-promo-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}
.sidebar-promo-body { font-size: 0.85rem; color: var(--off-white); line-height: 1.55; margin-bottom: 1.2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .hero-content-inner { grid-template-columns: 1fr; }
  .hero-right { max-width: 560px; }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-photo-stage img { width: 96%; max-width: 100%; }
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
  .footer-socials { justify-content: center; }
  .contact-methods { grid-template-columns: 1fr; }
  .fa-wrap { grid-template-columns: 1fr; }
  .fa-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .ad-sidebar-wrap, .sidebar-promo { flex: 1; min-width: 240px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding: 3.5rem 1.5rem 3rem; }
  .section, .section-mid { padding: 3.5rem 1.5rem; }
  .philosophy-quote { padding: 1.75rem 1.75rem; }
  .photo-break { height: 240px; }
  .shows-grid { grid-template-columns: 1fr; }
  .host-pillars { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
}
