@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* ── TOKENS ─────────────────────────────── */
:root {
  --bg:       #0b0b14;
  --surface:  #11111e;
  --card:     #16162a;
  --border:   rgba(255,255,255,0.07);
  --gold:     #c9a84c;
  --gold-dim: rgba(201,168,76,0.15);
  --red:      #c23535;
  --red-dim:  rgba(194,53,53,0.15);
  --text:     #ddddf0;
  --muted:    #7070a0;
  --sidebar-w: 260px;
}

/* ── RESET ───────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
}

a { text-decoration: none; color: inherit; }

/* ── LAYOUT ──────────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--surface);
  border-right: 1px solid var(--border);
  position: fixed;
  top: 0; left: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  z-index: 200;
  overflow-y: auto;
}

.admin-bar .sidebar {
  top: 32px;
  min-height: calc(100vh - 32px);
}

@media screen and (max-width: 768px) {
  .admin-bar .sidebar {
    top: 46px;
    min-height: calc(100vh - 46px);
  }
}

.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-width: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── SIDEBAR: LOGO ───────────────────────── */
.sidebar-logo {
  padding: 32px 24px 24px;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: opacity 0.2s;
}

.sidebar-logo:hover { opacity: 0.85; }

.sidebar-emblem {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

.sidebar-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
}

.sidebar-tagline {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 5px;
  line-height: 1.4;
  font-style: italic;
}

/* ── SIDEBAR: NAV ────────────────────────── */
nav {
  padding: 20px 0;
  flex: 1;
}

.nav-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 24px;
  margin-bottom: 6px;
  margin-top: 8px;
}

nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  border-left: 3px solid transparent;
  position: relative;
}

nav a .nav-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-left-color: rgba(201,168,76,0.4);
}

nav a.active {
  color: var(--gold);
  background: var(--gold-dim);
  border-left-color: var(--gold);
  font-weight: 600;
}

/* ── SIDEBAR: FOOTER ─────────────────────── */
.sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  color: var(--text);
  transition: background 0.2s, transform 0.2s;
}

.footer-icon-link:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.footer-icon-link i {
  font-size: 14px;
}

.sidebar-footer strong {
  color: var(--gold);
  display: block;
  font-size: 11px;
  margin-bottom: 2px;
}

/* ── TICKER ──────────────────────────────── */
.ticker-wrap {
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 7px 0;
  overflow: hidden;
  letter-spacing: 0.3px;
  flex-shrink: 0;
  display: flex;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  will-change: transform;
}

@keyframes ticker {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ── PAGE HERO ───────────────────────────── */
.page-hero {
  position: relative;
  padding: 64px 48px 52px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--surface) 0%, var(--card) 100%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.05;
  pointer-events: none;
}

.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-badge {
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ── CONTENT AREA ────────────────────────── */
.content {
  padding: 48px;
  flex: 1;
}

/* ── SECTION TITLE ───────────────────────── */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-title span { color: var(--gold); }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.ep-actions .btn {
  padding: 8px 14px;
  font-size: 13px;
}

.btn-primary {
  background: var(--gold);
  color: #000;
}

.btn-primary:hover {
  background: #e0be66;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.btn-youtube {
  background: var(--red);
  color: #fff;
  border: none;
}

.btn-youtube:hover {
  background: #d94040;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(194,53,53,0.3);
}

.btn-danger {
  background: var(--red);
  color: #fff;
}

.btn-danger:hover {
  background: #d94040;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(194,53,53,0.3);
}

/* ── CARDS ───────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── STAT BAR ────────────────────────────── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 40px 0;
}

.stat-item {
  background: var(--card);
  padding: 28px 20px;
  text-align: center;
}

.stat-item .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 1px;
}

.stat-item .label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  font-weight: 600;
}

/* ── QUOTE ───────────────────────────────── */
.quote-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 32px 36px;
  margin: 40px 0;
  position: relative;
}

.quote-block::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  color: var(--gold-dim);
  position: absolute;
  top: -10px; left: 16px;
  line-height: 1;
  pointer-events: none;
}

.quote-block p {
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.quote-block cite {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ── EPISODE CARDS ───────────────────────── */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.episode-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.episode-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.ep-thumb {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}

.ep-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}

.ep-emoji { position: relative; z-index: 1; }

.ep-num {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.6);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
  border: 1px solid rgba(201,168,76,0.3);
}

.ep-body { padding: 18px 20px; }

.ep-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.ep-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.ep-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ep-tag {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(201,168,76,0.2);
}

.ep-rating {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.ep-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

/* ── CURRICULUM ──────────────────────────── */
.curriculum-intro {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 36px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.curriculum-intro strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.dept { margin-bottom: 44px; }

.dept-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.course-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.course-table thead tr {
  background: var(--card);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.course-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.course-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.course-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.course-table tbody tr:last-child { border-bottom: none; }

.course-table td { padding: 14px 16px; vertical-align: top; color: var(--muted); }
.course-table td:first-child { color: var(--gold); font-weight: 700; white-space: nowrap; font-size: 13px; }
.course-table td:nth-child(2) { color: var(--text); font-weight: 500; }
.course-table td:last-child { text-align: center; color: var(--text); font-weight: 700; }

.req-badge {
  display: inline-block;
  background: var(--red-dim);
  color: var(--red);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 8px;
  margin-left: 8px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(194,53,53,0.2);
}

/* ── SPORTS ──────────────────────────────── */
.sports-banner {
  background: linear-gradient(135deg, var(--red) 0%, #7a1a1a 100%);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(194,53,53,0.3);
}

.sports-banner img.bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.07;
}

.sports-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  color: #fff;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}

.sports-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-top: 10px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.sport-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.sport-card:hover {
  border-color: rgba(194,53,53,0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.sport-card .champ {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 18px;
}

.sport-icon { font-size: 36px; margin-bottom: 12px; display: block; }

.sport-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.sport-record {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sport-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

.recruit-banner {
  background: linear-gradient(135deg, var(--card), var(--surface));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 36px 40px;
  text-align: center;
}

.recruit-banner h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.recruit-banner p {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ── HOME QUICK LINKS ────────────────────── */
.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.home-link-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: block;
  color: inherit;
  text-decoration: none;
}

.home-link-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.home-link-card .icon { font-size: 30px; margin-bottom: 14px; display: block; }
.home-link-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 7px; }
.home-link-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.home-link-card .arrow {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  margin-top: 14px;
  font-weight: 700;
  transition: transform 0.2s;
}

.home-link-card:hover .arrow { transform: translateX(4px); }

/* ── WELCOME BLOCK ───────────────────────── */
.welcome-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 40px;
  margin-bottom: 40px;
}

.welcome-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.welcome-block h2 span { color: var(--red); }
.welcome-block p { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 680px; }
.welcome-block small { display: block; margin-top: 10px; font-size: 11px; color: #444; }

.contact-section {
  margin-top: 48px;
}

.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 36px;
  min-width: 0;
}

.contact-form-wrap .wpcf7-form {
  display: grid;
  gap: 20px;
}

.contact-form-wrap .wpcf7-form p {
  margin: 0;
}

.contact-form-wrap label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text);
}

.contact-form-wrap label br {
  display: block;
  margin-bottom: 5px;
}

.contact-form-wrap label span {
  display: block;
  margin-top: 5px;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap textarea,
.contact-form-wrap select,
.contact-form-wrap .wpcf7-form-control,
.contact-form-wrap .wpcf7-form-control.wpcf7-text,
.contact-form-wrap .wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  color: #fff;
  font-size: 15px;
}

.contact-form-wrap textarea {
  min-height: 140px;
}

.contact-form-wrap input[type="submit"],
.contact-form-wrap .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 180px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap .wpcf7-submit:hover {
  background: #e0be66;
  transform: translateY(-1px);
}

.contact-form-wrap .wpcf7-response-output {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 18px 20px;
  color: #fff;
}

.contact-form-wrap .wpcf7-not-valid-tip {
  color: #ffb3b3;
  font-size: 13px;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    min-height: auto !important;
    position: static;
    top: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .admin-bar .sidebar {
    top: auto;
    min-height: auto !important;
  }
  body { flex-direction: column; }
  .main-content { margin-left: 0; }
  nav { display: flex; flex-wrap: wrap; padding: 12px 16px; }
  nav ul { list-style: none; margin: 0; padding: 0; }
  nav li { list-style: none; }
  nav a { padding: 8px 14px; border-left: none; border-bottom: 3px solid transparent; border-radius: 6px; }
  nav a.active { border-bottom-color: var(--gold); border-left-color: transparent; }
  .sidebar-logo { padding: 20px; }
  .sidebar-footer { display: none; }
  .mobile-footer { display: block !important; }
  .content, .page-hero { padding: 28px; }
}

.mobile-footer {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  color: var(--muted);
}

.mobile-footer strong {
  color: var(--gold);
  display: block;
  font-size: 11px;
  margin-bottom: 2px;
}

/* ── WORDPRESS ADMIN BAR OFFSET ─────────── */
.admin-bar .sidebar { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .sidebar { top: 46px; } }

/* ── HELPER ──────────────────────────────── */
.no-items {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  padding: 24px 0;
}
