:root {
  --bg: #0a0a0a;
  --panel: #141414;
  --panel2: #111111;
  --text: #f0f0f0;
  --muted: #9a9a9a;
  --border: #2a1a1a;
  --accent: #cc1a1a;
  --accent2: #f5a623;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(900px 400px at 50% -5%, #3a0a0a 0%, transparent 65%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: #f5a623; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.wrap { max-width: 1080px; margin: 0 auto; padding: 32px 24px 48px; }

/* ── Nav ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.nav-left { display: flex; align-items: center; gap: 14px; }

.social-icon {
  display: flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
  line-height: 1;
}
.social-icon:hover { color: var(--text); text-decoration: none; }

/* ── Button ── */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid #3a1a1a;
  background: #1a0a0a;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; box-shadow: 0 4px 14px rgba(0,0,0,.3); }

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #a00000);
  color: #fff;
  border: none;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(204,26,26,.4);
}

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 0 0 32px;
}
.hero-logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto 10px;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(204,26,26,.4));
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff 30%, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 24px;
}
.cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Featured grid ── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 10px;
}

.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

/* ── YouTube thumbnail ── */
.embed-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: linear-gradient(155deg, #1a0a0a, #0f0a0a);
  border: 1px solid #2a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}
.placeholder-link:hover { text-decoration: none; color: var(--text); }

.thumb-link {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}
.thumb-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  transition: opacity .15s;
}
.thumb-link:hover .thumb-img { opacity: .85; }
.thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
  opacity: 0;
  transition: opacity .15s;
}
.thumb-link:hover .thumb-play { opacity: 1; }

/* ── Podcast artwork ── */
.podcast-art-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.podcast-art {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 2px;
}
.podcast-text { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }

/* ── Card meta (YouTube title/date) ── */
.card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.meta-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.meta-title:hover { text-decoration: underline; }
.meta-date {
  font-size: 13px;
  color: var(--muted);
}

/* ── Podcast body ── */
.podcast-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ep-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.ep-title:hover { text-decoration: underline; }
.ep-date {
  font-size: 13px;
  color: var(--muted);
}
.ep-desc {
  font-size: 14px;
  color: #c0d2e8;
  margin: 0;
  line-height: 1.6;
  flex: 1;
}
.ep-btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* ── Skeleton loading ── */
.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #1a1010 25%, #2a1a1a 50%, #1a1010 75%);
  background-size: 400% 100%;
  animation: shimmer 1.5s infinite;
  width: 100%;
}
@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ── Contact Modal ── */
#modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 0, 0, .85);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}
.modal {
  background: #141010;
  border: 1px solid #3a1a1a;
  border-radius: 18px;
  padding: 32px 36px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  color: var(--muted); font-size: 26px; line-height: 1;
  cursor: pointer; padding: 4px 8px; border-radius: 6px;
}
.modal-close:hover { color: var(--text); }
.modal h2 { margin: 0 0 6px; font-size: 22px; }
.modal-sub { margin: 0 0 22px; color: var(--muted); font-size: 14px; }

.contact-form { display: flex; flex-direction: column; gap: 10px; }
.contact-form label { font-size: 13px; font-weight: 600; color: var(--muted); }
.contact-form input,
.contact-form textarea {
  background: #0f0a0a; border: 1px solid #3a1a1a; border-radius: 10px;
  padding: 11px 14px; color: var(--text); font-family: inherit; font-size: 14px;
  resize: vertical; outline: none; transition: border-color .15s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #4d6480; }
.submit-btn { margin-top: 4px; padding: 12px 24px; font-size: 15px; }
.form-thanks { margin: 12px 0 0; text-align: center; color: #7ad0a0; font-weight: 600; }

/* ── Footer ── */
.foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #7a94b0;
  font-size: 13px;
  margin-top: 32px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid #2a1010;
}
.foot-disclaimer { font-style: italic; color: #566e8a; }

/* ── Responsive ── */
@media (max-width: 540px) {
  .featured-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
}
