@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --bg-dark: #0a0c10;
  --bg-hero: #0d0f14;
  --bg-light: #EAE6E1;
  --bg-card-light: #EAE6E1;
  --text-dark: #111418;
  --text-light: #ffffff;
  --text-muted-dark: #666460;
  --text-muted-light: #a0a5b0;
  --accent-gold: #e28434;
  --accent-gold-glow: #f39c12;
  --accent-copper: #c86328;
  --border-gold: #c37b38;
  --border-light: #c8c5be;
  --font-main: 'Poppins', sans-serif;

  /* Design tokens — PLATAFORMA.pdf */
  --copper: #B66A3C;
  --copper-bright: #C58E6B;
  --copper-dark: #834B2C;
  --copper-deep: #57321E;
  --border-copper: #89563D;
  --navy: #234A66;
  --navy-light: #4F6C81;
  --blue-line: #7CA9E3;
  --card-dark: #1E2328;
  --gold-cream: #FDE6B8;
  --icon-dark: #14171C;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

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

/* CONTAINER */
.container {
  width: 92%;
  max-width: 1500px;
  margin: 0 auto;
}

/* ============================================================
   HEADER & NAVBAR
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 8px 0;
  background-color: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
  padding: 5px 0;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

#logo {
  width: 8.5em;
  transition: width 0.3s ease;
}

.desktop-nav {
  display: block;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #cfd3dc;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background-color: rgba(182, 106, 60, 0.2);
  color: #ffffff;
}

.nav-links a.active {
  background-color: var(--accent-copper);
  color: #ffffff;
  font-weight: 700;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  color: #c5c9d3;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover .social-icon-svg {
  color: var(--accent-gold);
  transform: translateY(-1px);
}

/* Hamburger Mobile Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 38px;
  height: 38px;
  background: rgba(182, 106, 60, 0.12);
  border: 1.5px solid var(--copper);
  border-radius: 8px;
  padding: 8px 7px;
  cursor: pointer;
  z-index: 105;
  transition: all 0.25s ease;
}

.mobile-menu-btn:hover {
  background: var(--copper);
}

.mobile-menu-btn:hover .hamburger-bar {
  background-color: #ffffff;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--copper-bright);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: #ffffff;
}

.mobile-menu-btn.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #ffffff;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-drawer.open {
  visibility: visible;
  opacity: 1;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 10, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 82%;
  max-width: 340px;
  background: linear-gradient(180deg, #10141a 0%, #090b0e 100%);
  border-left: 1px solid rgba(182, 106, 60, 0.35);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px 22px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.open .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-logo {
  width: 120px;
  height: auto;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(182, 106, 60, 0.4);
  color: var(--copper-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-nav-close svg {
  width: 18px;
  height: 18px;
}

.mobile-nav-close:hover {
  background: var(--copper);
  color: #ffffff;
}

.mobile-nav-links {
  list-style: none;
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-links a {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #e0e3eb;
  padding: 10px 14px;
  border-radius: 8px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(182, 106, 60, 0.15);
  color: var(--copper-bright);
  border-color: rgba(182, 106, 60, 0.3);
  transform: translateX(4px);
}

.mobile-nav-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-nav-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(35, 74, 102, 0.35);
  border: 1px solid rgba(124, 169, 227, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.2s ease;
}

.mobile-nav-socials a svg {
  width: 18px;
  height: 18px;
}

.mobile-nav-socials a:hover {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-2px);
}

.mobile-nav-email {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--copper-bright);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at 70% 30%, rgba(20, 25, 35, 0.4) 0%, rgba(10, 12, 16, 0.95) 100%),
              url('imgs/fondo.webp') center/cover no-repeat;
  padding-top: 130px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text-side {
  max-width: 680px;
  z-index: 2;
}

.hero-title-main {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.hero-title-main span {
  color: var(--copper);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 400;
  margin-bottom: 15px;
  color: #e0e3eb;
  line-height: 1.25;
}

.hero-subtitle strong {
  font-weight: 700;
}

.hero-description {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--text-muted-light);
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* BUTTONS — outline copper pills */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: transparent;
  color: #fff;
  border: 1.5px solid var(--copper);
}

.btn-primary:hover {
  background-color: rgba(182, 106, 60, 0.14);
  border-color: var(--copper-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 106, 60, 0.28);
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 1.5px solid var(--copper);
}

.btn-outline:hover {
  background-color: rgba(182, 106, 60, 0.14);
  border-color: var(--copper-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(182, 106, 60, 0.28);
}

.btn-play-badge {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background-color: var(--copper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-play-triangle {
  width: 12px;
  height: 12px;
  fill: var(--icon-dark);
  margin-left: 1px;
}

.btn-spotify-svg {
  width: 26px;
  height: 26px;
  color: var(--copper);
  flex-shrink: 0;
}

.hero-image-side {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  bottom: 0;
  right: 5%;
  pointer-events: none;
  z-index: 2;
}

.hero-people-img {
  width: auto;
  max-width: min(800px, 48vw);
  max-height: 90vh;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.hero-glow-img {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  max-width: 900px;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
}

/* ============================================================
   ULTIMO EPISODIO SECTION
   ============================================================ */
.section-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 55px 0;
}

.ultimo-episodio-card {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.9fr;
  gap: 35px;
  background-color: var(--bg-light);
  align-items: flex-start;
}

.ep-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background: #000;
}

.ep-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.ep-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #222;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.ep-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #222;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  background: var(--copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.play-overlay:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--copper-bright);
}

.play-icon-svg {
  width: 22px;
  height: 22px;
  fill: var(--icon-dark);
  margin-left: 3px;
}

.ep-details {
  padding-right: 15px;
}

.section-label {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.ep-guest-name {
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 4px;
}

.ep-guest-title {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--navy-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.ep-description {
  font-size: 0.95rem;
  color: #3e424b;
  line-height: 1.6;
}

.ep-side {
  padding-left: 5px;
}

.ep-side-title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.bullet-list {
  list-style: none;
  margin-bottom: 24px;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.4;
}

.bullet-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--navy);
  font-size: 1.2rem;
  top: -4px;
}

.share-buttons {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.share-btn:hover {
  background-color: var(--copper);
  transform: translateY(-2px);
}

.share-btn-svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============================================================
   COMMUNITY BANNER SECTION
   ============================================================ */
.community-banner-section {
  background: radial-gradient(circle at 50% 50%, rgba(20, 22, 28, 0.9) 0%, rgba(5, 6, 8, 0.98) 100%),
              url(imgs/fondo.webp) center / cover no-repeat;
  position: relative;
  overflow: visible;
  padding: 35px 0;
  border-top: 1px solid #1a1d24;
  border-bottom: 1px solid #1a1d24;
}

.community-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.community-banner-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 45%;
}

.community-banner-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--copper);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  text-transform: uppercase;
}

.community-banner-text {
  color: #ffffff;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.community-banner-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -57%);
  pointer-events: none;
  z-index: 3;
}

.community-banner-img {
  max-height: 280px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  transform: rotate(-15deg);
}

.community-banner-right {
  display: flex;
  align-items: center;
}

.community-banner-btn {
  background-color: var(--copper);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 15px rgba(182, 106, 60, 0.3);
}

.community-banner-btn:hover {
  background-color: var(--accent-gold);
  transform: translateY(-2px);
}

.community-banner-btn strong {
  font-weight: 700;
}

.community-banner-arrow-btn {
  width: 28px;
  height: 28px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.community-banner-arrow-btn svg {
  width: 100%;
  height: 100%;
  stroke: #ffffff;
}

/* ============================================================
   RECENT EPISODES SECTION
   ============================================================ */
.recent-episodes-section {
  padding: 40px 0;
  background: var(--bg-light);
  color: var(--text-dark);
  z-index: 10;
  position: relative;
}

.episodes-header {
  border-bottom: 1px solid rgba(131, 76, 44, 0.35);
  padding-bottom: 18px;
  margin-bottom: 35px;
}

.episodes-header .section-link-light {
  color: var(--copper-dark);
}

.episodes-header .section-link-light:hover {
  color: var(--copper);
}

.section-header-light {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}

.section-title-light {
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--copper);
}

.section-link-light {
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  white-space: nowrap;
}

.section-link-light:hover {
  color: var(--copper-dark);
}

.icon-arrow-down,
.icon-arrow-right {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.25s ease;
}

.section-link-light:hover .icon-arrow-right {
  transform: translateX(4px);
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.episode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.2s ease;
}

.episode-card:hover {
  transform: translateY(-4px);
}

.episode-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #000;
}

.episode-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.play-overlay-small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.play-overlay-small:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--copper-bright);
}

.play-icon-small {
  width: 14px;
  height: 14px;
  fill: var(--icon-dark);
  margin-left: 2px;
}

.episode-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--copper-dark);
  margin-top: 14px;
  margin-bottom: 4px;
  line-height: 1;
}

.episode-card-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--copper-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.episode-card-desc {
  font-size: 0.78rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
  max-width: 95%;
}

.episode-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -11px;
  top: 20%;
  bottom: 18px;
  width: 1.5px;
  background: rgba(131, 76, 44, 0.35);
}

.episode-star {
  position: absolute;
  right: -16px;
  bottom: 0;
  color: var(--copper);
  font-size: 0.75rem;
  line-height: 1;
}

/* ============================================================
   NOSOTROS SECTION
   ============================================================ */
.nosotros-section {
  background: linear-gradient(rgba(8, 7, 5, 0.65), rgba(10, 8, 6, 0.5)),
              url('imgs/fondo.webp') bottom/cover no-repeat;
  color: #fff;
  padding: 70px 0 0 0;
  position: relative;
  overflow: hidden;
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.1fr;
  align-items: center;
  gap: 40px;
}

.nosotros-info {
  padding-bottom: 50px;
}

.nosotros-title-sub {
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.nosotros-title-main {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}

.nosotros-desc {
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  color: #d8d8dc;
  line-height: 1.6;
  margin-bottom: 26px;
}

.btn-nosotros-more {
  z-index: 4;
  background: linear-gradient(135deg, var(--copper-bright), var(--copper-dark));
  border: none;
  color: #fff;
  box-shadow: 0 8px 22px rgba(131, 76, 44, 0.45);
  padding: 12px 24px;
}

.btn-nosotros-more:hover {
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(131, 76, 44, 0.55);
}

.btn-arrow-circle {
  width: 24px;
  height: 24px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-left: 6px;
  flex-shrink: 0;
}

.nosotros-hosts-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

.hosts-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.hosts-image-wrapper img {
  width: 100%;
  z-index: 2;
  position: relative;
  display: block;
}

.host-overlay-card {
  position: absolute;
  z-index: 3;
  width: 34%;
  color: #fff;
}

.host-sebastian {
  top: 7%;
  left: 31%;
}

.host-macarena {
  top: 7%;
  right: -14%;
}

.host-name {
  font-size: clamp(0.95rem, 1.5vw, 1.4rem);
  font-weight: 800;
  color: var(--copper);
  line-height: 1.15;
  margin-bottom: 6px;
}

.host-bio {
  font-size: clamp(0.7rem, 0.95vw, 0.92rem);
  color: #d0d5e0;
  line-height: 1.45;
}

.linked-in-host {
  position: absolute;
  top: 5%;
  right: 5%;
}

.linked-in-host svg{
  width: 35px;
  height: 35px;
}

/* ============================================================
   CLIPS SECTION
   ============================================================ */
.clips-section {
  padding: 35px 0 45px 0;
  background-color: var(--bg-light);
}

.clips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.clip-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease;
}

.clip-card:hover {
  transform: translateY(-4px);
}

.clip-thumb {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  width: 40%;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #000;
  text-decoration: none;
}

.clip-thumb img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.clip-thumb:hover img {
  transform: scale(1.05);
}

.clip-thumb:hover .play-overlay-small {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--copper-bright);
}

.clip-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.clip-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.25;
}

.clip-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.clip-title-link:hover {
  color: var(--copper);
}

.clip-desc {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.45;
}

.clip-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -11px;
  top: 5%;
  bottom: 15px;
  width: 2.5px;
  border-radius: 20px;
  background: rgb(41, 78, 105);
}

.clip-star {
  position: absolute;
  right: -15px;
  bottom: 0;
  color: var(--copper);
  font-size: 0.9rem;
  line-height: 1;
}

/* ============================================================
   CONVERSATION & CAROUSEL SECTION
   ============================================================ */
.conversation-section {
  width: 100%;
  position: relative;
  border-top: 1px solid #1a1d24;
  background-color: #0d0f14;
}

.conversation-container {
  display: flex;
  width: 100%;
  min-height: 280px;
}

.conversation-left {
  width: 40%;
  flex-shrink: 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 22, 28, 0.6) 0%, rgba(5, 6, 8, 1) 100%),
              url(imgs/fondo.webp) center / cover no-repeat;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.conversation-left-inner {
  width: 100%;
  max-width: 660px;
}

.conversation-subtitle {
  color: var(--copper);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.conversation-headline {
  color: #ffffff;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 20px;
}

.social-links-bar {
  display: flex;
  align-items: center;
  gap: 12px 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.social-icon {
  width: 30px;
  height: 30px;
  background-color: var(--copper);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-item:hover .social-icon {
  background-color: var(--accent-gold);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.contacto-block {
  margin-top: 10px;
}

.contacto-subtitle {
  color: var(--copper);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contacto-email {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contacto-email:hover {
  color: var(--copper-bright);
}

.conversation-right {
  width: 60%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.temas-carousel-block {
  background-color: #0a0d12;
  padding: 30px 25px 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.temas-carousel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 0;
}

.temas-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

.carousel-arrow {
  background: transparent;
  border: 1.5px solid var(--copper);
  color: var(--copper);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 10;
  transition: all 0.2s ease;
}

.carousel-arrow:hover {
  background-color: var(--copper);
  color: #ffffff;
}

.carousel-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.temas-carousel-track-container {
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
  flex: 1;
  padding: 6px 0;
}

.temas-carousel-track {
  display: flex;
  gap: 12px;
}

.category-card {
  border: 1px solid var(--border-copper);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
  background-color: var(--card-dark);
  transition: all 0.25s ease;
  min-height: 64px;
  position: relative;
  box-sizing: border-box;
}

.category-card:hover {
  border-color: var(--copper);
  background-color: rgba(224, 90, 43, 0.08);
}

.temas-carousel-track .category-card {
  flex: 0 0 calc((100% - 24px) / 3);
  min-width: calc((100% - 24px) / 3);
  max-width: calc((100% - 24px) / 3);
  box-sizing: border-box;
}

.category-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
  position: static;
}

.category-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--copper);
  line-height: 1.25;
  text-align: left;
  flex: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--bg-light);
  padding: 35px 0;
  width: 100%;
}

.footer-container {
  margin: 0 auto;
}

.footer-box {
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: transparent;
}

.footer-col-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1.3;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo img {
  width: 135px;
  height: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #14171c;
  line-height: 1.35;
  font-weight: 500;
  margin: 0;
}

.footer-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 80px;
  position: relative;
  padding: 0 15px;
  flex-shrink: 0;
}

.footer-divider-line {
  width: 1.5px;
  height: 100%;
  background-color: #234A66;
}

.footer-star {
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.footer-col-social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1.5;
  padding: 0 10px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 800;
  color: var(--copper);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-social-list {
  display: flex;
  align-items: center;
  gap: 14px 20px;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-social-icon {
  width: 30px;
  height: 30px;
  background-color: #142535;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-icon-sp {
  border-radius: 50%;
}

.footer-social-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--copper);
  transition: color 0.2s ease;
}

.footer-social-link:hover .footer-social-icon {
  background-color: var(--copper);
  transform: translateY(-2px);
}

.footer-social-link:hover .footer-social-text {
  color: var(--copper-dark);
}

.footer-col-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding-left: 15px;
}

.footer-contact-email {
  font-size: 1.15rem;
  font-weight: 700;
  color: #142535;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-contact-email:hover {
  color: var(--copper);
}

/* ============================================================
   LIGHTBOX DE REPRODUCCIÓN (YouTube / Instagram)
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: lbFade 0.25s ease;
}

.lb-content {
  position: relative;
  width: min(900px, 92vw);
  animation: lbScale 0.3s ease;
  z-index: 2;
}

.lb-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.lb-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.lb-close {
  position: absolute;
  top: -42px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: #c86328;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}

.lb-close:hover {
  transform: scale(1.1);
  background: #b66a3c;
}

@keyframes lbFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes lbScale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* ============================================================
   RESPONSIVE DESIGN (Consolidated & Fine-Tuned for Mobile)
   ============================================================ */

/* --- TABLETS & DESKTOPS MEDIANOS (<= 1100px) --- */
@media (max-width: 1100px) {
  .episodes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .clips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ultimo-episodio-card {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .ep-side {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(131, 76, 44, 0.25);
    padding-top: 20px;
    padding-left: 0;
  }
  .episode-card::after,
  .episode-star,
  .clip-card::after,
  .clip-star {
    display: none;
  }
  .host-sebastian {
    left: 20%;
  }
  .host-macarena {
    right: -6%;
  }
}

/* --- TABLETS Y SMARTPHONES GRANDES (<= 992px) --- */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .social-links {
    display: none; /* Accessible inside mobile drawer */
  }

  /* Hero Mobile Layout */
  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-content {
    text-align: center;
    justify-content: center;
  }
  .hero-text-side {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image-side {
    position: relative;
    right: auto;
    bottom: 0;
    width: 100%;
    max-width: 520px;
    margin: 25px auto 0 auto;
    display: flex;
    justify-content: center;
  }
  .hero-people-img {
    max-width: 100%;
    max-height: none;
  }
  .hero-glow-img {
    bottom: -35px;
    max-width: 540px;
  }

  /* Community Banner */
  .community-banner-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .community-banner-left {
    max-width: 100%;
    align-items: center;
  }
  .community-banner-tagline {
    justify-content: center;
  }
  .community-banner-center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 10px 0;
  }
  .community-banner-img {
    max-height: 180px;
  }
  .community-banner-right {
    justify-content: center;
  }

  /* Nosotros Section */
  .nosotros-section {
    padding-top: 50px;
  }
  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }
  .nosotros-info {
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nosotros-desc {
    max-width: 650px;
  }
  .nosotros-hosts-container {
    max-width: 580px;
    margin: 0 auto;
  }
  .host-sebastian {
    top: 5%;
    left: 8%;
    width: 40%;
  }
  .host-macarena {
    top: 5%;
    right: 8%;
    width: 40%;
  }

  /* Conversation Section */
  .conversation-container {
    flex-direction: column;
  }
  .conversation-left,
  .conversation-right {
    width: 100%;
  }
  .conversation-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    text-align: center;
  }
  .social-links-bar {
    justify-content: center;
  }
  .temas-carousel-block {
    padding: 30px 20px;
  }
  .temas-carousel-header {
    justify-content: center;
    margin-bottom: 18px;
  }
  .temas-carousel-track .category-card {
    flex: 0 0 calc((100% - 24px) / 3);
    min-width: calc((100% - 24px) / 3);
    max-width: calc((100% - 24px) / 3);
  }

  /* Footer */
  .footer-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding: 10px 20px;
  }
  .footer-divider {
    display: none;
  }
  .footer-col-brand,
  .footer-col-social,
  .footer-col-contact {
    width: 100%;
    padding: 0;
    align-items: center;
  }
  .footer-social-list {
    justify-content: center;
  }
}

/* --- SMARTPHONES ESTÁNDAR (<= 768px) --- */
@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  /* Header */
  .header {
    padding: 10px 0;
  }
  #logo {
    width: 7.5em;
  }

  /* Hero Section */
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .btn {
    justify-content: center;
    font-size: 1.05rem;
    padding: 13px 20px;
  }

  /* Ultimo Episodio */
  .ultimo-episodio-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ep-details {
    padding-right: 0;
  }

  /* Episodios Recientes & Clips */
  .episodes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .clips-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Host Overlay Cards in Nosotros Section - Elegantly styled cards on mobile */
  .hosts-image-wrapper {
    margin-bottom: 0;
  }
  .host-overlay-card {
    position: static;
    width: 100%;
    background: rgba(14, 18, 24, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(182, 106, 60, 0.4);
    border-radius: 12px;
    padding: 16px 18px;
    text-align: left;
    margin-top: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  }
  .host-sebastian,
  .host-macarena {
    top: auto;
    left: auto;
    right: auto;
  }
  .host-name {
    font-size: 1.25rem;
  }
  .host-bio {
    font-size: 0.88rem;
  }

  /* Temas Carousel */
  .temas-carousel-track .category-card {
    flex: 0 0 calc((100% - 12px) / 2);
    min-width: calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }

  /* Social links in conversation section */
  .social-links-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 320px;
    margin: 0 auto 20px auto;
  }
  .social-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Footer */
  .footer-col-brand {
    flex-direction: column;
    gap: 10px;
  }
  .footer-social-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
    max-width: 280px;
    margin: 0 auto;
  }
  .footer-contact-email {
    font-size: 1.05rem;
  }
}

/* --- SMARTPHONES PEQUEÑOS (<= 480px) --- */
@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .hero-title-main {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  .hero-subtitle {
    font-size: 1.15rem;
  }
  .hero-description {
    font-size: 0.88rem;
    margin-bottom: 25px;
  }

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

  .community-banner-btn {
    font-size: 0.92rem;
    padding: 10px 16px;
    gap: 8px;
  }

  .temas-carousel-track .category-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .icon-arrow-down,
  .icon-arrow-right {
    width: 32px;
    height: 32px;
  }

  .section-title-light,
  .section-link-light {
    font-size: 1.15rem;
  }
}

/* ============================================================
   COMMUNITY MODAL & SUBSCRIPTION FORM
   ============================================================ */
.community-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
  padding: 20px;
}

.community-modal.open {
  opacity: 1;
  visibility: visible;
}

.community-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 16, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.community-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 490px;
  background: linear-gradient(165deg, #1b1e26 0%, #111318 100%);
  border: 1px solid rgba(182, 106, 60, 0.4);
  border-radius: 20px;
  padding: 34px 30px 30px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85), 0 0 35px rgba(182, 106, 60, 0.18);
  transform: translateY(22px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
  max-height: 92vh;
  overflow-y: auto;
  z-index: 2;
}

.community-modal.open .community-modal-dialog {
  transform: translateY(0) scale(1);
}

.community-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c8c5be;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.community-modal-close:hover {
  background: rgba(182, 106, 60, 0.3);
  border-color: var(--copper);
  color: #ffffff;
  transform: rotate(90deg);
}

.community-modal-header {
  margin-bottom: 22px;
  text-align: left;
}

.community-modal-badge {
  display: inline-block;
  background: rgba(182, 106, 60, 0.18);
  border: 1px solid rgba(182, 106, 60, 0.45);
  color: #e28434;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.community-modal-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.community-modal-desc {
  font-size: 0.88rem;
  color: #a0a5b0;
  line-height: 1.5;
}

.community-form-group {
  margin-bottom: 18px;
  text-align: left;
}

.community-form-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: #e0ded8;
  margin-bottom: 6px;
}

.community-form-label .req {
  color: #e28434;
  font-weight: 700;
}

.community-form-label .opt {
  color: #7d828f;
  font-weight: 400;
  font-size: 0.8rem;
  margin-left: 4px;
}

.community-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.community-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: #0d0f14;
  border: 1.5px solid #2a2e38;
  border-radius: 10px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.94rem;
  transition: all 0.2s ease;
  outline: none;
}

.community-input::placeholder {
  color: #5c6270;
}

.community-input:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(182, 106, 60, 0.25);
  background: #12151d;
}

.community-input.is-valid {
  border-color: #2ecc71;
}

.community-input.is-invalid {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.05);
}

.community-input-icon {
  position: absolute;
  left: 14px;
  color: #6e7484;
  pointer-events: none;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.community-input:focus ~ .community-input-icon {
  color: var(--copper-bright);
}

.community-field-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
  font-weight: 500;
}

.community-field-hint {
  color: #6a707e;
  font-size: 0.74rem;
  margin-top: 4px;
}

.community-submit-btn {
  width: 100%;
  margin-top: 22px;
  background: linear-gradient(135deg, var(--copper) 0%, #a45322 100%);
  color: #ffffff;
  border: none;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(182, 106, 60, 0.35);
  transition: all 0.25s ease;
}

.community-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--copper) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(226, 132, 52, 0.45);
}

.community-submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

.community-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.community-submit-btn .btn-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: commSpin 0.7s linear infinite;
}

@keyframes commSpin {
  to { transform: rotate(360deg); }
}

.community-alert {
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid rgba(231, 76, 60, 0.4);
  color: #ff9e9e;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.community-success {
  text-align: center;
  padding: 15px 10px 10px;
  animation: commFadeIn 0.35s ease;
}

@keyframes commFadeIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.community-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 25px rgba(46, 204, 113, 0.35);
}

.community-success-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.community-success-desc {
  color: #a0a5b0;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.community-success-close-btn {
  background: #242934;
  color: #ffffff;
  border: 1px solid #3c4250;
  padding: 11px 28px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.community-success-close-btn:hover {
  background: var(--copper);
  border-color: var(--copper);
}

@media (max-width: 600px) {
  .community-modal-dialog {
    padding: 28px 20px 24px;
    border-radius: 16px;
  }
  .community-modal-title {
    font-size: 1.35rem;
  }
}

