/* ===== HEADER STYLING ===== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #000000;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

/* BIGGER LOGO FIX */
.logo img {
    height: 1000px;   /* <<< CHANGE THIS NUMBER to adjust size */
    width: auto;
    display: block;
}

/* NAVIGATION LINKS */
nav a {
    color: #d1d1d1;
    margin-left: 30px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

nav a:hover {
    color: #ffd700;
}
/* ---------- BASIC RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* ---------- THEME ---------- */
:root {
  --bg: #050507;
  --bg-alt: #0d0f13;
  --card: #111319;
  --card-soft: #151823;
  --border-soft: #242736;
  --gold: #d4a742;
  --gold-soft: #f2c869;
  --silver: #cfd3dd;
  --text-main: #ffffff;
  --text-muted: #a3a6b7;
}

/* ---------- GLOBAL ---------- */

body {
  background: radial-gradient(circle at top left, #141824, #050507 55%);
  color: var(--text-main);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

main {
  padding-top: 80px;
}

section {
  scroll-margin-top: 100px;
}

/* ---------- NAVBAR ---------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 42px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--silver);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.76rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--silver), var(--gold-soft));
  transition: width 0.25s ease;
}

.nav-links a.active {
  color: var(--gold-soft);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ---------- HERO (HOME) ---------- */

.hero {
  padding: 64px 20px 72px;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 3vw + 1.4rem, 3.5rem);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-text h1 span {
  color: var(--gold-soft);
}

.hero-copy {
  margin: 0 0 24px;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.12s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #050507;
  font-weight: 600;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.btn.ghost {
  border-color: var(--border-soft);
  color: var(--silver);
  background: transparent;
}

.btn.ghost:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.hero-tags span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

/* ---------- HERO PANEL ---------- */

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card {
  background: radial-gradient(circle at top left, #30354a, #151823);
  border-radius: 20px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--silver);
  margin-bottom: 6px;
}

.hero-card h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.hero-card .small {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat {
  background: var(--card-soft);
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
  display: block;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold-soft);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ---------- ABOUT (HOME) ---------- */

.about {
  padding: 8px 20px 60px;
}

.about-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 40px;
  align-items: start;
}

.about-text h2 {
  margin: 0 0 10px;
  font-size: 1.7rem;
}

.about-text p {
  color: var(--text-muted);
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-card {
  background: var(--card);
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid var(--border-soft);
}

.about-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.about-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* ---------- GENERIC SECTIONS ---------- */

.section {
  padding: 40px 20px 60px;
}

.section-header {
  max-width: 1120px;
  margin: 0 auto 28px;
}

.section-header h2 {
  margin: 2px 0 8px;
  font-size: 1.6rem;
}

.section-header p {
  max-width: 640px;
  color: var(--text-muted);
  margin: 0;
}

.section-header .small.extra {
  max-width: 640px;
  margin-top: 10px;
}

.card-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ---------- REUSABLE CARDS ---------- */

.info-card,
.locker-card,
.story-card {
  background: var(--card);
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid var(--border-soft);
}

.info-card h3,
.locker-card h3,
.story-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.info-card p,
.locker-card p,
.story-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pill {
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border-soft);
  background: transparent;
  color: var(--text-muted);
}

.pill.disabled {
  opacity: 0.7;
}

/* ---------- LEGAL PAGE ---------- */

.legal {
  padding-bottom: 72px;
}

.legal-inner {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--bg-alt);
  border-radius: 18px;
  padding: 20px 22px 22px;
  border: 1px solid var(--border-soft);
}

.legal-inner h2 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.4rem;
}

.legal-inner p {
  margin: 4px 0;
  color: var(--text-muted);
}

.small {
  font-size: 0.84rem;
}

/* ---------- CONTACT BLOCK (HOME) ---------- */

.contact {
  padding-bottom: 80px;
}

.contact-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 32px;
  align-items: start;
}

.contact-text h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.contact-card {
  background: var(--card);
  border-radius: 18px;
  padding: 18px 20px 20px;
  border: 1px solid var(--border-soft);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.contact-lines p {
  margin: 4px 0;
  font-size: 0.9rem;
}

.contact-lines span {
  color: var(--silver);
  font-weight: 500;
}

.contact-lines a {
  color: var(--gold-soft);
  text-decoration: none;
}

.contact-lines a:hover {
  text-decoration: underline;
}

/* ---------- LOCKER ROOM PAGE (REAL LOCKERS) ---------- */

.locker-page {
  padding-bottom: 80px;
}

/* Outer wrapper */
.locker-wall-wrapper {
  max-width: 1120px;
  margin: 0 auto 26px;
}

/* Wall background */
.locker-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  padding: 22px;
  border-radius: 26px;
  background: radial-gradient(circle at top, #262937, #050509 70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.9);
}

/* Base locker door shape */
.locker-door {
  position: relative;
  height: 260px;
  border-radius: 10px;
  background: linear-gradient(180deg, #14151c, #05050a);
  border: 1px solid #35394a;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.9),
    0 14px 30px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

/* Clickability only for player lockers */
.locker-door.has-player {
  cursor: pointer;
}

/* Slight brushed highlight */
.locker-door::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.1),
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.03)
  );
  opacity: 0.4;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Top and bottom vents */
.door-vents {
  position: absolute;
  left: 12px;
  right: 44px;
  height: 18px;
  display: flex;
  gap: 4px;
}

.door-vents.top {
  top: 10px;
}

.door-vents.bottom {
  bottom: 28px;
}

.door-vents::before,
.door-vents::after,
.door-vents span {
  content: "";
  flex: 1;
  border-radius: 4px;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  opacity: 0.9;
}

/* Small bolts in corners */
.door-bolts {
  position: absolute;
  inset: 6px 8px;
  pointer-events: none;
}

.door-bolts span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #777b86;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.7);
}

.door-bolts span:nth-child(1) {
  top: 0;
  left: 0;
}
.door-bolts span:nth-child(2) {
  top: 0;
  right: 0;
}
.door-bolts span:nth-child(3) {
  bottom: 0;
  left: 0;
}
.door-bolts span:nth-child(4) {
  bottom: 0;
  right: 0;
}

/* Jersey-style number in center */
.door-number {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow:
    0 0 0 rgba(0, 0, 0, 0.6),
    0 0 12px rgba(0, 0, 0, 0.8);
}

.reserved-num {
  opacity: 0.35;
}

/* Nameplate near bottom */
.door-nameplate {
  position: absolute;
  left: 14px;
  right: 46px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(5, 5, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.door-nameplate.reserved {
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.2);
}

.door-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--silver);
}

.door-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Metallic handle on right */
.door-handle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f4f4f5, #a1a6b1);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.45);
}

.door-handle::before,
.door-handle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6c707a;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.door-handle::before {
  top: 9px;
}
.door-handle::after {
  bottom: 9px;
}

/* Hover + active animations */
.locker-door.has-player:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(212, 167, 66, 0.4);
}

.locker-door.has-player.active {
  border-color: var(--gold-soft);
  transform-origin: left center;
  transform: translateY(-2px) perspective(900px) rotateY(-18deg);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 1),
    0 0 0 1px rgba(212, 167, 66, 0.9);
}

/* Empty lockers slightly muted */
.locker-door.empty {
  opacity: 0.65;
}

/* Detail panel (what you see "inside" the locker) */
.locker-detail {
  max-width: 1120px;
  margin: 0 auto;
  background: radial-gradient(circle at top left, #242633, #0c0d12);
  border-radius: 20px;
  padding: 18px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  min-height: 260px;
}

.player-panel {
  display: none;
}

.player-panel.active {
  display: block;
}

.player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.player-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.player-tag {
  font-size: 0.78rem;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.player-story {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.signed-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.item-card {
  background: rgba(6, 6, 10, 0.65);
  border-radius: 16px;
  padding: 14px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.item-card h4 {
  margin: 4px 0 4px;
  font-size: 1rem;
}

.item-meta {
  margin: 0 0 4px;
  font-size: 0.8rem;
  color: var(--silver);
}

.item-copy {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- FOOTER ---------- */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 20px 22px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    order: -1;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid.three {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    gap: 16px;
    font-size: 0.7rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .signed-items {
    grid-template-columns: 1fr;
  }

  .player-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .about-grid,
  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .locker-wall {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }
}
/* =======================================================
   GLOBAL + HOME PAGE STYLES
   ======================================================= */

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #05070b;
    color: #f5f5f5;
}

/* HEADER (we keep this here so all pages look consistent) */
.site-header {
    width: 100%;
    padding: 15px 40px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 215, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* NAVIGATION */
.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: #d4d4d4;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
    color: #ffd86b;
    transform: translateY(-1px);
}

/* MAIN LAYOUT */
.home-main {
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 24px;
}

/* HERO */
.hero {
    padding: 40px 0 32px 0;
}

.hero-kicker {
    color: #ffd86b;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 12px;
    margin-bottom: 8px;
}

.hero h1 {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 14px 0;
}

.hero-text {
    font-size: 18px;
    color: #f5f5f5;
    max-width: 620px;
    margin-bottom: 10px;
}

.hero-secondary {
    font-size: 15px;
    color: #b0b0b0;
    max-width: 640px;
}

/* SECTION HEADERS */
.section-header {
    margin: 40px 0 16px 0;
}

.section-header h2 {
    font-size: 26px;
    margin: 0 0 4px 0;
}

.section-header p {
    margin: 0;
    color: #b8b8b8;
}

/* MISSION GRID */
.mission-section {
    margin-top: 20px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.mission-card {
    background: linear-gradient(145deg, #0b0d12, #11141c);
    border-radius: 12px;
    padding: 18px 18px 20px 18px;
    border: 1px solid rgba(255, 215, 0, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.mission-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
}

.mission-card p {
    margin: 4px 0;
    font-size: 14px;
    color: #c8c8c8;
}

/* WHY SECTION */
.why-section {
    margin-top: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.why-card {
    background: #090b11;
    border-radius: 12px;
    padding: 16px 16px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.why-card h3 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 17px;
}

.why-card p {
    margin: 0;
    font-size: 14px;
    color: #c4c4c4;
}

/* CONTACT SECTION */
.contact-section {
    margin-top: 50px;
}

.contact-card {
    background: linear-gradient(145deg, #0a0c12, #141827);
    border-radius: 20px;
    padding: 24px 24px 26px 24px;
    border: 1px solid rgba(255, 215, 0, 0.25);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.contact-card h2 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 24px;
}

.contact-card p {
    margin-top: 0;
    margin-bottom: 12px;
    color: #dcdcdc;
    font-size: 15px;
}

.contact-details {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
    gap: 24px;
    margin-top: 16px;
}

.contact-details h4 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 16px;
}

.contact-details p {
    margin: 4px 0;
    font-size: 14px;
}

/* CONTACT FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
    flex: 1 1 0;
    background: #05070b;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 10px;
    color: #f5f5f5;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 80px;
    resize: vertical;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd86b, #ffb347);
    border: none;
    border-radius: 999px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #231a00;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 4px;
}

.btn-primary:hover {
    filter: brightness(1.07);
}

.form-note {
    font-size: 11px;
    color: #a0a0a0;
    margin-top: 6px;
}

/* FOOTER */
.site-footer {
    text-align: center;
    font-size: 12px;
    padding: 18px 0 24px 0;
    color: #8c8c8c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
}
/* =======================================================
   MVP PROGRAM PAGE STYLES
   ======================================================= */

.mvp-main {
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 24px;
}

/* HERO */
.mvp-hero {
    padding: 40px 0 30px 0;
}

.mvp-hero h1 {
    font-size: 34px;
    margin: 6px 0 10px 0;
}

.mvp-hero-text {
    font-size: 15px;
    color: #cfcfcf;
    max-width: 760px;
}

/* GENERIC MVP SECTION WRAPPER */
.mvp-section {
    margin-top: 34px;
}

/* CARD GRID AT TOP */
.mvp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.mvp-card {
    background: linear-gradient(145deg, #0b0d12, #141823);
    border-radius: 14px;
    padding: 16px 16px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.7);
}

.mvp-card h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
}

.mvp-card p {
    margin: 0;
    font-size: 14px;
    color: #d1d1d1;
}

/* REWARDS LAYOUT */
.mvp-reward-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.mvp-reward-column {
    background: #090b11;
    border-radius: 14px;
    padding: 16px 16px 18px 16px;
    border: 1px solid rgba(255, 215, 0, 0.22);
}

.mvp-reward-column h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
}

/* LISTS */
.mvp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mvp-list li {
    font-size: 14px;
    color: #c7c7c7;
    margin-bottom: 8px;
}

.mvp-list li strong {
    color: #ffd86b;
}

.mvp-list.small li {
    font-size: 13px;
}

/* TWO COLUMN SECTION */
.mvp-two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: flex-start;
}

.mvp-two-column h2 {
    margin-top: 0;
    margin-bottom: 8px;
}

.mvp-info-card {
    background: #090b11;
    border-radius: 14px;
    padding: 16px 16px 18px 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 14px;
    color: #d3d3d3;
}

/* CTA BLOCK FOR SCHOOLS */
.mvp-contact-block {
    background: linear-gradient(145deg, #0a0c12, #181c2a);
    border-radius: 18px;
    padding: 18px 18px 22px 18px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.8);
}

.mvp-contact-block h2 {
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 22px;
}

.mvp-contact-block p {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 14px;
    color: #e0e0e0;
}

.mvp-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
    gap: 18px;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .mvp-two-column {
        grid-template-columns: 1fr;
    }

    .mvp-contact-grid {
        grid-template-columns: 1fr;
    }
}
