/* ============================================
   Winners Talking Podcast - Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #bd0300;
  --red-dark: #9a0200;
  --red-light: #e00400;
  --dark: #1a1a1a;
  --dark-card: #222;
  --dark-card-hover: #2a2a2a;
  --dark-surface: #111;
  --white: #ffffff;
  --grey-light: #ccc;
  --grey: #999;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 70px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--white);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--red);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(189, 3, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  width: 50px;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  position: relative;
  transition: opacity var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  opacity: 0.9;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-social a {
  color: var(--white);
  font-size: 1.1rem;
  transition: opacity var(--transition), transform var(--transition);
}

.nav-social a:hover {
  opacity: 0.8;
  transform: scale(1.15);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('hero-bg.png') center center / cover no-repeat;
  animation: heroFade 6s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroFade {
  0%   { opacity: 0; }
  30%  { opacity: 0.5; }
  70%  { opacity: 0.5; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 700px;
}

.hero-logo {
  width: 300px;
  max-width: 80vw;
  height: auto;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
  animation: fadeInUp 0.8s ease-out;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--white);
  color: var(--red);
}

.btn-primary:hover {
  background: #f0f0f0;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* --- Featured Player (inside listen section) --- */
.featured-player {
  max-width: 100%;
}

.featured-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.featured-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.featured-info {
  margin-top: 1rem;
  text-align: center;
}

.featured-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.featured-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* --- Episodes Section --- */
.episodes-section {
  padding: 5rem 0;
  background: linear-gradient(160deg, #1a1a1a 0%, #3d0c0b 25%, #1a1a1a 45%, #3d0c0b 65%, #1a1a1a 100%);
  background-size: 400% 400%;
  animation: gradientShift 12s ease infinite;
  position: relative;
  overflow: hidden;
}

.episodes-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle 600px at 30% 40%, rgba(189, 3, 0, 0.45) 0%, transparent 60%),
    radial-gradient(circle 500px at 70% 60%, rgba(189, 3, 0, 0.35) 0%, transparent 55%);
  animation: spotlight 10s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes spotlight {
  0%   { transform: translate(0%, 0%) rotate(0deg); }
  25%  { transform: translate(10%, -8%) rotate(5deg); }
  50%  { transform: translate(-5%, 10%) rotate(-3deg); }
  75%  { transform: translate(-10%, -5%) rotate(4deg); }
  100% { transform: translate(0%, 0%) rotate(0deg); }
}

.episodes-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2l2 3.5-2 3zM0 20h2v20H0V20z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
}

.episodes-section > .container {
  position: relative;
  z-index: 1;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.episodes-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-buttons {
  display: flex;
  gap: 0.5rem;
}

.tab-btn {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--red);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.tab-btn:hover {
  background: rgba(189, 3, 0, 0.2);
}

.tab-btn.active {
  background: var(--red);
  color: var(--white);
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--dark-card);
  border-radius: 50px;
  padding: 0 16px;
  width: 100%;
  border: 1px solid #333;
  transition: border-color var(--transition);
}

.search-bar:focus-within {
  border-color: var(--red);
}

.search-icon {
  color: var(--grey);
  font-size: 0.9rem;
  margin-right: 10px;
}

.search-bar input {
  flex: 1;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 0;
  outline: none;
}

.search-bar input::placeholder {
  color: var(--grey);
}

.filter-btn {
  background: none;
  border: none;
  color: var(--grey);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
}

.filter-btn:hover {
  color: var(--white);
}

.search-bar-wrapper {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.filter-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 16px;
  min-width: 200px;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.filter-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.filter-dropdown h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey);
  margin-bottom: 10px;
}

.filter-option {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--grey-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.filter-option:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.filter-option.active {
  background: var(--red);
  color: var(--white);
}

/* --- Video Grid --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  background: var(--dark-card-hover);
}

.video-card:hover .card-thumbnail img {
  transform: scale(1.05);
}

.video-card:hover .card-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-thumbnail {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.card-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.card-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  background: rgba(189, 3, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

.card-play-icon i {
  color: var(--white);
  font-size: 1.1rem;
  margin-left: 3px;
}

.card-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-body);
}

.card-info {
  padding: 14px;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--white);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Load More */
.load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}

.load-more-btn {
  background: var(--red);
  color: var(--white);
}

.load-more-btn:hover {
  background: var(--red-dark);
}

.load-more-btn.hidden {
  display: none;
}

/* --- About Section --- */
.about-section {
  padding: 5rem 0;
  background: var(--dark-surface);
}

.about-description {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  color: var(--grey-light);
  line-height: 1.8;
}

.about-description strong {
  color: var(--white);
}

.host-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.host-card {
  display: flex;
  background: var(--dark-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #333;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.host-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(189, 3, 0, 0.2);
}

.host-image {
  flex-shrink: 0;
  width: 260px;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.host-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}

.host-card:hover .host-image img {
  transform: scale(1.05);
}

.host-image .host-avatar {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.host-avatar i {
  font-size: 4rem;
  color: var(--white);
}

.host-details {
  flex: 1;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.host-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.host-origin {
  font-size: 0.9rem;
  color: var(--red-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.host-origin i {
  margin-right: 4px;
}

.host-bio {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.host-socials {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.host-socials a {
  width: 40px;
  height: 40px;
  min-width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--grey);
  font-size: 1.1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.host-socials a:hover {
  background: var(--red);
  color: var(--white);
  transform: scale(1.15);
}

.bio-toggle {
  display: none;
}

/* --- Listen Section --- */
.listen-section {
  padding: 5rem 0;
  background: var(--red);
  text-align: center;
}

.listen-combined {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.listen-latest {
  max-width: 500px;
}

.listen-latest .section-title {
  font-size: 1.4rem;
  text-align: left;
}

.listen-platforms .section-title {
  font-size: 1.4rem;
}

.listen-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.platform-grid {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.platform-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px) scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.platform-card i {
  font-size: 1.8rem;
  color: var(--white);
}

/* --- Contact Section --- */
.contact-section {
  padding: 5rem 0;
  background: var(--dark);
}

.contact-subtitle {
  text-align: center;
  color: var(--grey-light);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--grey-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark-card);
  border: 1px solid #333;
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-card);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  width: 100%;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  padding: 16px;
  font-size: 1rem;
}

.contact-submit:hover {
  background: var(--red-dark);
}

.form-success {
  text-align: center;
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.4);
  border-radius: 10px;
  color: #5cb85c;
  font-size: 1rem;
}

.form-success i {
  margin-right: 6px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- Footer --- */
.site-footer {
  background: var(--dark-surface);
  padding: 4rem 0 0;
  border-top: 1px solid #222;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #222;
}

.footer-logo {
  width: 50px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: var(--grey);
  font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--grey);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-social-links {
  display: flex;
  gap: 1rem;
}

.footer-social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--dark-card);
  color: var(--white);
  font-size: 1.1rem;
  transition: background var(--transition), transform var(--transition);
}

.footer-social-links a:hover {
  background: var(--red);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  color: var(--grey);
  font-size: 0.85rem;
}

/* --- Video Modal --- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 900px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), color var(--transition);
}

.modal-close:hover {
  transform: scale(1.2);
  color: var(--red-light);
}

.modal-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 1rem;
  text-align: center;
  padding: 0 1rem;
}

/* --- No Results --- */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--grey);
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--grey);
  opacity: 0.5;
}

.no-results p {
  font-size: 1.1rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive --- */

/* Tablet */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--red);
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    padding: 0.8rem 1.5rem;
  }

  .nav-social {
    display: none;
  }

  .hero-bg-image {
    display: none;
  }

  .hero-logo {
    width: 200px;
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .episodes-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-buttons {
    justify-content: center;
  }

  .search-bar-wrapper {
    max-width: 100%;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .host-card {
    flex-direction: column;
    flex: 1 1 0;
  }

  .host-cards {
    flex-direction: row;
    max-width: 100%;
    margin: 0 auto;
  }

  .host-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: unset;
    max-height: unset;
  }

  .host-name {
    font-size: 1.3rem;
  }

  .bio-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 1px solid #444;
    border-radius: 6px;
    color: var(--grey-light);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    margin: 0 auto 0.5rem;
    transition: color 0.3s ease, border-color 0.3s ease;
  }

  .bio-toggle i {
    font-size: 0.55rem;
    transition: transform 0.3s ease;
  }

  .bio-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  .host-bio {
    font-size: 0.65rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .host-bio.open {
    max-height: 200px;
    opacity: 1;
  }

  .host-details {
    padding: 1.5rem;
    text-align: center;
  }

  .host-socials {
    justify-content: center;
    gap: 0.4rem;
  }

  .host-socials a {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 0.8rem;
  }

  .listen-combined {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 1rem;
  }

  .footer-social-links {
    justify-content: center;
  }

  .modal-close {
    top: -40px;
    right: 0;
  }

  .modal-title {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 22px;
    font-size: 0.9rem;
  }

  .latest-episode {
    padding: 3rem 0;
  }

  .episodes-section {
    padding: 3rem 0;
  }

  .about-section {
    padding: 3rem 0;
  }

  .listen-section {
    padding: 3rem 0;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .tab-btn {
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  .platform-grid {
    grid-template-columns: 1fr 1fr;
  }
}
