:root{
  --bg:#f4f7fb;
  --bg-soft:#f8fbff;
  --surface:#ffffff;
  --surface-2:#f2f5fa;
  --line:#dfe7f0;
  --text:#10213f;
  --muted:#5f6f89;
  --blue:#003b7a;
  --blue-2:#0a57b5;
  --red:#c8102e;
  --red-2:#e01d3d;
  --green:#16a34a;
  --green-soft:#edfdf3;
  --amber:#b45309;
  --amber-soft:#fff8eb;
  --gray:#64748b;
  --gray-soft:#f1f5f9;
  --danger-soft:#f4f6f8;
  --shadow:0 16px 40px rgba(10, 24, 56, .08);
  --shadow-soft:0 10px 24px rgba(10,24,56,.06);
  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;
  --radius-sm:12px;
  --container:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(0,59,122,.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 38%, #eef4fa 100%);
}

a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}

.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:saturate(160%) blur(12px);
  background:rgba(255,255,255,.88);
  border-bottom:1px solid rgba(223,231,240,.85);
}

.site-header__inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand img{
  height:54px;
  width:auto;
  object-fit:contain;
}

.brand__text{
  display:flex;
  flex-direction:column;
  gap:2px;
  line-height:1;
}

.brand__title{
  font-size:14px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--red);
}

.brand__name{
  font-size:17px;
  font-weight:900;
  color:var(--blue);
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.nav a{
  color:var(--text);
  font-weight:800;
  font-size:15px;
  padding:10px 14px;
  border-radius:999px;
  transition:.18s ease;
}

.nav a:hover{
  background:rgba(0,59,122,.06);
  color:var(--blue);
}

.nav a.is-active{
  background:var(--blue);
  color:#fff;
  box-shadow:0 10px 20px rgba(0,59,122,.18);
}

.hero{
  padding:42px 0 24px;
}

.hero__card{
  background:linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(245,249,255,.96) 100%);
  border:1px solid rgba(223,231,240,.95);
  border-radius:32px;
  box-shadow:var(--shadow);
  padding:38px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  color:var(--blue);
  background:#eef5ff;
  border:1px solid rgba(0,59,122,.1);
}

.hero h1{
  margin:14px 0 14px;
  font-size:clamp(34px, 5vw, 58px);
  line-height:.98;
  letter-spacing:-.03em;
  color:var(--blue);
}

.hero p{
  margin:0;
  font-size:18px;
  line-height:1.7;
  color:var(--muted);
  max-width:700px;
}

.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:0;
  border-radius:999px;
  padding:15px 20px;
  font-weight:900;
  font-size:15px;
  transition:.18s ease;
  cursor:pointer;
}

.btn:hover{transform:translateY(-1px)}
.btn--primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 12px 24px rgba(0,59,122,.18);
}
.btn--secondary{
  background:#eef5ff;
  color:var(--blue);
}
.btn--danger{
  background:var(--red);
  color:#fff;
  box-shadow:0 12px 24px rgba(200,16,46,.18);
}
.btn--ghost{
  background:#fff;
  color:var(--blue);
  border:1px solid var(--line);
}
.btn--disabled{
  background:#e2e8f0;
  color:#7c8ca2;
  cursor:not-allowed;
  box-shadow:none;
}

.hero__stats{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.stat-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:18px 20px;
  box-shadow:var(--shadow-soft);
}

.stat-card__label{
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--muted);
}

.stat-card__value{
  margin-top:8px;
  font-size:32px;
  font-weight:900;
  color:var(--blue);
}

.stat-card__note{
  margin-top:8px;
  font-size:14px;
  color:var(--muted);
}

.quick-access{
  padding:10px 0 22px;
}

.quick-access__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.service-card{
  min-height:188px;
  border-radius:28px;
  padding:28px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  color:#fff;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.service-card::after{
  content:"";
  position:absolute;
  inset:auto -40px -40px auto;
  width:140px;
  height:140px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}

.service-card--tv{
  background:linear-gradient(135deg, #02438d 0%, #00306c 100%);
}
.service-card--radio{
  background:linear-gradient(135deg, #df1438 0%, #b60b29 100%);
}

.service-card__icon{
  width:78px;
  height:78px;
  border-radius:24px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-size:34px;
  font-weight:900;
}

.service-card__content h3{
  margin:0 0 8px;
  font-size:32px;
  line-height:1;
}

.service-card__content p{
  margin:0;
  max-width:320px;
  line-height:1.6;
  color:rgba(255,255,255,.88);
}

.service-card__arrow{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:24px;
  font-weight:900;
  background:#fff;
  color:var(--blue);
  flex-shrink:0;
}

.section{
  padding:18px 0 10px;
}

.section__header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

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

.section__title-bar{
  width:5px;
  height:34px;
  border-radius:999px;
  background:linear-gradient(180deg, var(--red), #f76b80);
}

.section__title h2{
  margin:0;
  font-size:31px;
  line-height:1.05;
  letter-spacing:-.02em;
  color:var(--blue);
}

.section__title p{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.6;
}

.link-inline{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  color:var(--blue);
  padding:12px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.cards-grid--list{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.signal-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow-soft);
  padding:16px;
  display:flex;
  flex-direction:column;
  min-height:330px;
  transition:.18s ease;
}

.signal-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(10,24,56,.09);
}

.signal-card--offline{
  background:#fbfcfd;
  border-color:#e7edf3;
}

.signal-card__top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  margin-bottom:14px;
}

.signal-label{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 11px;
  border-radius:999px;
  background:#eff4fa;
  color:var(--blue);
  font-weight:900;
  font-size:12px;
  letter-spacing:.02em;
}

.status-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 11px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
}

.status-pill::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:currentColor;
}

.status-pill--live{
  background:var(--green-soft);
  color:var(--green);
}
.status-pill--review{
  background:var(--amber-soft);
  color:var(--amber);
}
.status-pill--offline{
  background:var(--danger-soft);
  color:var(--gray);
}

.signal-card__logo{
  margin:0 auto 18px;
  width:132px;
  height:106px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, #fff 0%, #f4f8fc 100%);
  border:1px solid #e2e8f0;
  overflow:hidden;
}

.signal-card__logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:12px;
}

.signal-card__logo-fallback{
  width:72px;
  height:72px;
  border-radius:20px;
  display:grid;
  place-items:center;
  font-size:28px;
  font-weight:900;
  color:var(--blue);
  background:#eef4fb;
}

.signal-card__name{
  margin:0;
  text-align:center;
  font-size:28px;
  line-height:1.05;
  color:var(--blue);
  letter-spacing:-.02em;
}

.signal-card__name--small{
  font-size:18px;
}

.signal-card__meta{
  margin-top:10px;
  text-align:center;
  color:var(--muted);
  line-height:1.6;
  min-height:48px;
}

.signal-card__meta strong{
  color:var(--text);
}

.signal-card__actions{
  margin-top:auto;
  padding-top:18px;
}

.signal-card__button{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:52px;
  padding:14px 16px;
  border-radius:999px;
  font-weight:900;
  font-size:16px;
}

.signal-card__button--tv{
  background:var(--blue);
  color:#fff;
}
.signal-card__button--radio{
  background:var(--red);
  color:#fff;
}
.signal-card__button--disabled{
  background:#e2e8f0;
  color:#7a8799;
}

.empty-state{
  padding:28px;
  border-radius:24px;
  background:#fff;
  border:1px dashed var(--line);
  color:var(--muted);
  text-align:center;
}

.info-banner{
  margin:20px 0 4px;
  padding:18px 20px;
  border-radius:20px;
  background:#fff7e8;
  border:1px solid #f4d28c;
  color:#8a5a06;
  line-height:1.7;
}

.tools-bar{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
  margin:18px 0 22px;
}

.search-box{
  flex:1 1 320px;
  max-width:460px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 18px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.search-box input{
  width:100%;
  border:0;
  outline:none;
  font:inherit;
  background:transparent;
  color:var(--text);
}

.summary-pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.summary-pill{
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--blue);
  font-weight:900;
  font-size:13px;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
  margin-top:18px;
}

.feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow-soft);
  padding:22px;
}

.feature-card__icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:#eef4fb;
  color:var(--blue);
  font-size:24px;
  margin-bottom:16px;
}

.feature-card h3{
  margin:0 0 10px;
  color:var(--blue);
  font-size:19px;
}

.feature-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.site-footer{
  margin-top:34px;
  background:linear-gradient(180deg, #082759 0%, #001d44 100%);
  color:#fff;
}

.site-footer__inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding:14px 0;
}

.site-footer small{
  color:rgba(255,255,255,.8);
  font-size:14px;
}

.page-hero{
  padding:34px 0 10px;
}

.page-hero__box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  box-shadow:var(--shadow);
  padding:30px;
  text-align:center;
}

.page-hero__title{
  margin:0;
  font-size:clamp(30px,4vw,52px);
  line-height:1;
  letter-spacing:-.03em;
  color:var(--blue);
}

.page-hero__subtitle{
  margin:14px auto 0;
  max-width:760px;
  color:var(--muted);
  line-height:1.7;
  font-size:17px;
}

.player-shell{
  padding:30px 0 36px;
}

.player-layout{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:20px;
}

.player-side,
.player-main{
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
}

.player-side{
  padding:24px;
}

.player-back{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--blue);
  font-weight:900;
  margin-bottom:18px;
}

.player-logo{
  width:100%;
  height:180px;
  border-radius:24px;
  background:linear-gradient(180deg, #fff 0%, #f4f8fc 100%);
  border:1px solid #e2e8f0;
  display:grid;
  place-items:center;
  overflow:hidden;
  margin-bottom:18px;
}

.player-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:18px;
}

.player-side h1{
  margin:0 0 10px;
  font-size:32px;
  line-height:1.02;
  color:var(--blue);
  letter-spacing:-.03em;
}

.player-side p{
  margin:0;
  line-height:1.7;
  color:var(--muted);
}

.player-side__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:16px 0 14px;
}

.player-main{
  padding:22px;
}

.player-stage{
  width:100%;
  min-height:520px;
  border-radius:24px;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(0,59,122,.18), transparent 28%),
    linear-gradient(180deg,#0d1d37 0%, #0a162b 100%);
  border:1px solid rgba(255,255,255,.06);
  display:grid;
  place-items:center;
}

.player-stage video,
.player-stage audio{
  width:100%;
  height:100%;
  display:block;
  background:#000;
}

.player-state{
  color:#fff;
  text-align:center;
  padding:34px;
  max-width:560px;
}

.player-state__icon{
  width:74px;
  height:74px;
  border-radius:22px;
  margin:0 auto 16px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  font-size:34px;
}

.player-state h2{
  margin:0 0 10px;
  font-size:28px;
}

.player-state p{
  margin:0;
  line-height:1.7;
  color:rgba(255,255,255,.8);
}

.player-note{
  margin-top:16px;
  padding:16px 18px;
  border-radius:18px;
  background:#f8fbff;
  border:1px solid var(--line);
  color:var(--muted);
  line-height:1.7;
}

.loader{
  width:54px;
  height:54px;
  border-radius:50%;
  border:4px solid rgba(255,255,255,.18);
  border-top-color:#fff;
  animation:spin .9s linear infinite;
  margin:0 auto 16px;
}

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

@media (max-width:1100px){
  .cards-grid,
  .cards-grid--list,
  .feature-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

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

  .player-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width:760px){
  .site-header__inner{
    min-height:unset;
    padding:14px 0;
    align-items:flex-start;
    flex-direction:column;
  }

  .nav{
    width:100%;
    overflow:auto;
    flex-wrap:nowrap;
    padding-bottom:4px;
  }

  .hero{
    padding-top:24px;
  }

  .hero__card,
  .page-hero__box{
    padding:22px;
    border-radius:24px;
  }

  .quick-access__grid,
  .cards-grid,
  .cards-grid--list,
  .feature-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:unset;
    padding:22px;
  }

  .service-card__content h3{
    font-size:28px;
  }

  .section__title h2{
    font-size:26px;
  }

  .signal-card{
    min-height:unset;
  }

  .player-stage{
    min-height:320px;
  }

  .site-footer__inner{
    justify-content:center;
    text-align:center;
  }
}


/* IPTV_LOGO_NORMALIZE_START */
/* Normalización visual de logos para tarjetas de TV y Radio */

.list-grid .media-card__logo,
.list-grid .channel-card__logo,
.list-grid .station-card__logo,
.list-grid .card-logo,
.list-grid .logo-box,
.list-grid .tile-logo,
.cards-grid .media-card__logo,
.cards-grid .channel-card__logo,
.cards-grid .station-card__logo,
.cards-grid .card-logo,
.cards-grid .logo-box,
.cards-grid .tile-logo,
.channels-grid .media-card__logo,
.channels-grid .channel-card__logo,
.channels-grid .station-card__logo,
.channels-grid .card-logo,
.channels-grid .logo-box,
.channels-grid .tile-logo {
  width: 132px !important;
  height: 132px !important;
  min-width: 132px !important;
  min-height: 132px !important;
  max-width: 132px !important;
  max-height: 132px !important;
  margin: 0 auto 18px auto !important;
  padding: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: #f6f8fc !important;
  border: 1px solid #dbe4f0 !important;
  border-radius: 22px !important;
  box-sizing: border-box !important;
}

.list-grid .media-card__logo img,
.list-grid .channel-card__logo img,
.list-grid .station-card__logo img,
.list-grid .card-logo img,
.list-grid .logo-box img,
.list-grid .tile-logo img,
.cards-grid .media-card__logo img,
.cards-grid .channel-card__logo img,
.cards-grid .station-card__logo img,
.cards-grid .card-logo img,
.cards-grid .logo-box img,
.cards-grid .tile-logo img,
.channels-grid .media-card__logo img,
.channels-grid .channel-card__logo img,
.channels-grid .station-card__logo img,
.channels-grid .card-logo img,
.channels-grid .logo-box img,
.channels-grid .tile-logo img,
.list-grid img.channel-logo,
.list-grid img.card-logo,
.list-grid img.station-logo,
.cards-grid img.channel-logo,
.cards-grid img.card-logo,
.cards-grid img.station-logo,
.channels-grid img.channel-logo,
.channels-grid img.card-logo,
.channels-grid img.station-logo {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 auto !important;
  border-radius: 12px !important;
  background: transparent !important;
}

/* Si el logo viene directo dentro de la tarjeta sin contenedor claro */
.list-grid .card > img:first-child,
.cards-grid .card > img:first-child,
.channels-grid .card > img:first-child {
  width: 132px !important;
  height: 132px !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 auto 18px auto !important;
  padding: 12px !important;
  background: #f6f8fc !important;
  border: 1px solid #dbe4f0 !important;
  border-radius: 22px !important;
  box-sizing: border-box !important;
}

/* Placeholder con letras cuando no hay logo */
.list-grid .media-card__logo:not(:has(img)),
.list-grid .channel-card__logo:not(:has(img)),
.list-grid .station-card__logo:not(:has(img)),
.list-grid .card-logo:not(:has(img)),
.list-grid .logo-box:not(:has(img)),
.list-grid .tile-logo:not(:has(img)) {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #0d4e96 !important;
}

/* Afinar en móvil */
@media (max-width: 768px) {
  .list-grid .media-card__logo,
  .list-grid .channel-card__logo,
  .list-grid .station-card__logo,
  .list-grid .card-logo,
  .list-grid .logo-box,
  .list-grid .tile-logo,
  .cards-grid .media-card__logo,
  .cards-grid .channel-card__logo,
  .cards-grid .station-card__logo,
  .cards-grid .card-logo,
  .cards-grid .logo-box,
  .cards-grid .tile-logo,
  .channels-grid .media-card__logo,
  .channels-grid .channel-card__logo,
  .channels-grid .station-card__logo,
  .channels-grid .card-logo,
  .channels-grid .logo-box,
  .channels-grid .tile-logo {
    width: 112px !important;
    height: 112px !important;
    min-width: 112px !important;
    min-height: 112px !important;
    max-width: 112px !important;
    max-height: 112px !important;
    padding: 10px !important;
  }

  .list-grid .card > img:first-child,
  .cards-grid .card > img:first-child,
  .channels-grid .card > img:first-child {
    width: 112px !important;
    height: 112px !important;
    padding: 10px !important;
  }
}
/* IPTV_LOGO_NORMALIZE_END */


/* IPTV_LOGO_SAFE_FRAME_START */
/* Corrección fina: evita que logos con texto inferior se corten dentro del marco */

.signal-card__logo {
  width: 150px !important;
  height: 126px !important;
  min-width: 150px !important;
  min-height: 126px !important;
  max-width: 150px !important;
  max-height: 126px !important;
  margin: 0 auto 18px auto !important;
  padding: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%) !important;
  border: 1px solid #dbe4f0 !important;
  border-radius: 22px !important;
  box-sizing: border-box !important;
}

.signal-card__logo img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 auto !important;
  padding: 4px !important;
  box-sizing: border-box !important;
  border-radius: 10px !important;
}

/* Para logos muy altos o con texto abajo, dar un poco más de aire vertical */
.signal-card__logo img[src*="antena-7"],
.signal-card__logo img[src*="telemedios"],
.signal-card__logo img[src*="telesistema"],
.signal-card__logo img[src*="teleantillas"],
.signal-card__logo img[src*="teleunion"],
.signal-card__logo img[src*="digital-15"] {
  padding: 10px !important;
  transform: scale(.92) !important;
  transform-origin: center center !important;
}

/* Mantener placeholder centrado cuando no hay logo */
.signal-card__logo-fallback {
  width: 76px !important;
  height: 76px !important;
  border-radius: 22px !important;
  display: grid !important;
  place-items: center !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  color: #003b7a !important;
  background: #eef4fb !important;
}

/* Móvil */
@media (max-width: 768px) {
  .signal-card__logo {
    width: 132px !important;
    height: 116px !important;
    min-width: 132px !important;
    min-height: 116px !important;
    max-width: 132px !important;
    max-height: 116px !important;
  }
}
/* IPTV_LOGO_SAFE_FRAME_END */


/* IPTV_HOME_REDESIGN_START */

.home-hero {
  padding: 44px 0 18px;
}

.home-hero__panel {
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  background:
    radial-gradient(circle at 85% 20%, rgba(200,16,46,.08), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
  border: 1px solid #dfe7f0;
  box-shadow: 0 24px 70px rgba(10,24,56,.11);
}

.home-hero__content {
  padding: 58px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-hero__content h1 {
  margin: 18px 0 18px;
  max-width: 720px;
  color: #003b7a;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: .94;
  letter-spacing: -.045em;
}

.home-hero__content p {
  margin: 0;
  max-width: 680px;
  color: #5f6f89;
  font-size: 20px;
  line-height: 1.65;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.home-hero__actions .btn {
  min-width: 190px;
  min-height: 58px;
}

.home-hero__brand-card {
  margin: 34px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #dfe7f0;
  box-shadow: 0 18px 40px rgba(10,24,56,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  position: relative;
}

.home-hero__brand-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #003b7a, #c8102e);
  border-radius: 999px;
}

.home-hero__brand-card img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}

.home-hero__quote {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #f8fafc;
  color: #003b7a;
  font-weight: 900;
  font-size: 19px;
  line-height: 1.35;
  text-align: center;
}

.home-metrics {
  margin: -34px auto 0;
  width: min(980px, calc(100% - 44px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 5;
}

.home-metric {
  background: #fff;
  border: 1px solid #dfe7f0;
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(10,24,56,.08);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-metric strong {
  color: #003b7a;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.home-metric span {
  color: #5f6f89;
  font-size: 15px;
  font-weight: 800;
}

.home-access {
  padding: 36px 0 10px;
}

.home-access__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-access-card {
  min-height: 220px;
  border-radius: 30px;
  padding: 34px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  box-shadow: 0 22px 50px rgba(10,24,56,.13);
  position: relative;
  overflow: hidden;
}

.home-access-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}

.home-access-card--tv {
  background: linear-gradient(135deg, #003b7a 0%, #07295b 100%);
}

.home-access-card--radio {
  background: linear-gradient(135deg, #d20f32 0%, #99091f 100%);
}

.home-access-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(255,255,255,.82);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.home-access-card h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.025em;
}

.home-access-card p {
  margin: 0;
  max-width: 480px;
  color: rgba(255,255,255,.86);
  line-height: 1.6;
}

.home-access-card b {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: #003b7a;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 28px;
  position: relative;
  z-index: 2;
}

.home-featured-section {
  padding-top: 34px;
}

.home-trust {
  padding: 28px 0 8px;
}

.home-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.home-trust__grid article {
  background: #fff;
  border: 1px solid #dfe7f0;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(10,24,56,.06);
}

.home-trust__grid b {
  display: block;
  color: #003b7a;
  font-size: 17px;
  margin-bottom: 8px;
}

.home-trust__grid span {
  display: block;
  color: #5f6f89;
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .home-hero__panel {
    grid-template-columns: 1fr;
  }

  .home-hero__brand-card {
    margin-top: 0;
  }

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

@media (max-width: 720px) {
  .home-hero {
    padding-top: 24px;
  }

  .home-hero__panel {
    min-height: unset;
    border-radius: 26px;
  }

  .home-hero__content {
    padding: 34px 24px;
  }

  .home-hero__content h1 {
    font-size: 42px;
  }

  .home-hero__content p {
    font-size: 17px;
  }

  .home-hero__brand-card {
    margin: 0 18px 18px;
    padding: 22px;
  }

  .home-metrics,
  .home-access__grid,
  .home-trust__grid {
    grid-template-columns: 1fr;
  }

  .home-metrics {
    margin: 18px 0 0;
    width: 100%;
  }

  .home-access-card {
    min-height: unset;
    padding: 26px;
  }
}
/* IPTV_HOME_REDESIGN_END */


/* IPTV_DIASPORA_MESSAGE_START */

.diaspora-strip {
  margin: 24px auto 0;
  width: min(1180px, calc(100% - 28px));
  background: #ffffff;
  border: 1px solid #dfe7f0;
  border-radius: 28px;
  box-shadow: 0 16px 38px rgba(10,24,56,.08);
  padding: 22px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 22px;
  align-items: center;
}

.diaspora-strip__intro {
  border-left: 6px solid #c8102e;
  padding-left: 18px;
}

.diaspora-strip__intro span {
  display: block;
  color: #c8102e;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 7px;
}

.diaspora-strip__intro strong {
  display: block;
  color: #003b7a;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.diaspora-strip__places {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.diaspora-strip__places b {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef5ff;
  border: 1px solid rgba(0,59,122,.11);
  color: #003b7a;
  font-size: 14px;
  font-weight: 900;
}

.diaspora-strip__places b:last-child {
  background: #fff1f3;
  border-color: rgba(200,16,46,.16);
  color: #c8102e;
}

@media (max-width: 900px) {
  .diaspora-strip {
    grid-template-columns: 1fr;
  }
}
/* IPTV_DIASPORA_MESSAGE_END */


/* IPTV_MEDIOS_DIGITALES_START */

.home-access__grid{
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:18px !important;
}

.home-access-card--digital{
  background:linear-gradient(135deg,#3f4b5f 0%, #6c7a92 100%) !important;
}

.home-access-card--digital b{
  color:#3f4b5f !important;
}

.digital-hero{
  min-height:340px;
  border-radius:30px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  padding:28px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255,255,255,.10), transparent 22%),
    linear-gradient(135deg,#f8fbff 0%, #eef3f9 100%);
  border:1px solid #dfe7f0;
  box-shadow:0 20px 44px rgba(10,24,56,.08);
}

.digital-hero__copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.digital-hero__copy h1{
  margin:14px 0 14px;
  color:#003b7a;
  font-size:clamp(36px,4.4vw,62px);
  line-height:.96;
  letter-spacing:-.04em;
}

.digital-hero__copy p{
  margin:0;
  max-width:760px;
  color:#5f6f89;
  font-size:18px;
  line-height:1.65;
}

.digital-hero__card{
  border-radius:26px;
  background:linear-gradient(135deg,#3f4b5f 0%, #6c7a92 100%);
  color:#fff;
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  box-shadow:0 20px 44px rgba(10,24,56,.10);
}

.digital-hero__card strong{
  display:block;
  font-size:28px;
  line-height:1.05;
  margin-bottom:12px;
}

.digital-hero__card span{
  display:block;
  color:rgba(255,255,255,.88);
  line-height:1.7;
  font-size:16px;
}

.digital-empty{
  background:#fff;
  border:1px solid #dfe7f0;
  border-radius:28px;
  padding:34px;
  box-shadow:0 14px 34px rgba(10,24,56,.07);
  text-align:center;
}

.digital-empty h2{
  margin:0 0 12px;
  color:#003b7a;
  font-size:34px;
  line-height:1;
}

.digital-empty p{
  margin:0 auto;
  max-width:780px;
  color:#5f6f89;
  font-size:17px;
  line-height:1.7;
}

.digital-empty__tags{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.digital-empty__tags b{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:10px 14px;
  border-radius:999px;
  background:#eef3f9;
  border:1px solid #dfe7f0;
  color:#3f4b5f;
  font-size:14px;
  font-weight:900;
}

@media (max-width:1180px){
  .home-access__grid{
    grid-template-columns:1fr !important;
  }

  .digital-hero{
    grid-template-columns:1fr;
  }
}

/* IPTV_MEDIOS_DIGITALES_END */\n\n
/* IPTV_HOME_FLAG_CARDS_START */

.home-access__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:20px !important;
}

.home-access-card{
  min-height:272px;
  border-radius:34px;
  padding:28px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  position:relative;
  overflow:hidden;
  text-decoration:none;
  box-shadow:0 18px 40px rgba(10,24,56,.10);
}

.home-access-card::before{
  content:"";
  position:absolute;
  width:190px;
  height:190px;
  right:-28px;
  top:-32px;
  border-radius:50%;
  background:rgba(255,255,255,.13);
}

.home-access-card__inner{
  position:relative;
  z-index:2;
  max-width:78%;
}

.home-access-card__head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}

.home-access-card__head span{
  font-size:16px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.home-access-card__icon{
  width:50px;
  height:50px;
  border-radius:16px;
  display:grid;
  place-items:center;
  flex:0 0 50px;
}

.home-access-card__icon svg{
  width:26px;
  height:26px;
  display:block;
}

.home-access-card h2{
  margin:0 0 10px;
  font-size:34px;
  line-height:1.02;
  letter-spacing:-.03em;
}

.home-access-card p{
  margin:0;
  font-size:17px;
  line-height:1.6;
  max-width:440px;
}

.home-access-card > b{
  position:relative;
  z-index:2;
  width:82px;
  height:82px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:38px;
  font-weight:900;
  flex:0 0 82px;
}

.home-access-card--tv{
  background:linear-gradient(135deg,#003b7a 0%, #0b4489 100%) !important;
  color:#ffffff !important;
}

.home-access-card--tv .home-access-card__head span,
.home-access-card--tv h2,
.home-access-card--tv p{
  color:#ffffff !important;
}

.home-access-card--tv .home-access-card__icon{
  background:rgba(255,255,255,.14);
  color:#ffffff;
  border:1px solid rgba(255,255,255,.16);
}

.home-access-card--tv > b{
  background:#ffffff;
  color:#003b7a;
}

.home-access-card--digital{
  background:#ffffff !important;
  color:#10213f !important;
  border:1px solid #dfe7f0;
  box-shadow:0 18px 42px rgba(10,24,56,.09);
}

.home-access-card--digital::before{
  background:rgba(10,24,56,.08);
}

.home-access-card--digital .home-access-card__head span{
  color:#5d6a82 !important;
}

.home-access-card--digital h2{
  color:#24344f !important;
}

.home-access-card--digital p{
  color:#5f6f89 !important;
}

.home-access-card--digital .home-access-card__icon{
  background:#fff1f3;
  color:#c8102e;
  border:1px solid rgba(200,16,46,.14);
}

.home-access-card--digital > b{
  background:#f3f6fa;
  color:#24344f;
  border:1px solid #e0e7f0;
}

.home-access-card--radio{
  background:linear-gradient(135deg,#c8102e 0%, #d8062d 100%) !important;
  color:#ffffff !important;
}

.home-access-card--radio .home-access-card__head span,
.home-access-card--radio h2,
.home-access-card--radio p{
  color:#ffffff !important;
}

.home-access-card--radio .home-access-card__icon{
  background:rgba(255,255,255,.14);
  color:#ffffff;
  border:1px solid rgba(255,255,255,.16);
}

.home-access-card--radio > b{
  background:#ffffff;
  color:#003b7a;
}

@media (max-width:1180px){
  .home-access__grid{
    grid-template-columns:1fr !important;
  }
}

@media (max-width:720px){
  .home-access-card{
    min-height:auto;
    padding:24px;
    border-radius:26px;
    gap:16px;
  }

  .home-access-card__inner{
    max-width:100%;
  }

  .home-access-card h2{
    font-size:28px;
  }

  .home-access-card p{
    font-size:16px;
  }

  .home-access-card > b{
    width:66px;
    height:66px;
    flex:0 0 66px;
    font-size:30px;
  }
}

/* IPTV_HOME_FLAG_CARDS_END */
\n


/* IPTV_MEDIOS_FUNCIONAL_START */

.signal-card__button--digital{
  background:#374151;
  color:#ffffff;
}

.badge.digital{
  background:#f3f4f6;
  color:#374151;
}

.digital-page-hero{
  background:
    radial-gradient(circle at 85% 20%, rgba(200,16,46,.08), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
}

@media (max-width: 760px){
  .nav a[href="medios.html"]{
    white-space:nowrap;
  }
}

/* IPTV_MEDIOS_FUNCIONAL_END */


/* IPTV_MOBILE_POLISH_PUBLIC_START */

html,
body{
  max-width:100%;
  overflow-x:hidden;
}

img,
video,
iframe{
  max-width:100%;
}

.site-header{
  z-index:50;
}

.nav a{
  -webkit-tap-highlight-color:transparent;
}

@media (max-width: 980px){

  .container{
    width:min(100% - 28px, 1180px) !important;
  }

  .site-header__inner{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    gap:14px !important;
    padding-top:14px !important;
    padding-bottom:14px !important;
  }

  .brand{
    display:flex !important;
    justify-content:center !important;
    width:100% !important;
  }

  .brand img{
    max-width:250px !important;
    height:auto !important;
    object-fit:contain !important;
  }

  .nav{
    width:100% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:8px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    padding:4px 2px 8px !important;
    scrollbar-width:none !important;
    -webkit-overflow-scrolling:touch !important;
  }

  .nav::-webkit-scrollbar{
    display:none !important;
  }

  .nav a{
    flex:0 0 auto !important;
    white-space:nowrap !important;
    min-height:42px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:10px 14px !important;
    border-radius:999px !important;
    background:#f3f6fa !important;
    border:1px solid #dfe7f0 !important;
    font-size:14px !important;
    font-weight:900 !important;
  }

  .nav a.is-active{
    background:#003b7a !important;
    color:#ffffff !important;
    border-color:#003b7a !important;
  }

  .hero,
  .home-hero,
  .page-hero__box,
  .digital-hero{
    border-radius:24px !important;
  }

  .home-access__grid{
    grid-template-columns:1fr !important;
    gap:16px !important;
  }

  .home-access-card{
    min-height:220px !important;
    border-radius:28px !important;
    padding:24px !important;
  }

  .home-access-card__inner{
    max-width:100% !important;
  }

  .home-access-card h2{
    font-size:clamp(28px, 8vw, 38px) !important;
  }

  .home-access-card p{
    font-size:16px !important;
  }

  .home-access-card > b{
    width:64px !important;
    height:64px !important;
    flex:0 0 64px !important;
    font-size:30px !important;
  }

  .summary-pills,
  .stats-grid,
  .home-stats,
  .tools-bar{
    display:flex !important;
    flex-wrap:wrap !important;
    gap:10px !important;
  }

  .tools-bar{
    align-items:stretch !important;
  }

  .search-box{
    width:100% !important;
  }

  .search-box input{
    width:100% !important;
    min-height:48px !important;
  }

  .cards-grid,
  .cards-grid--list{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:14px !important;
  }

  .signal-card{
    border-radius:24px !important;
    padding:16px !important;
  }

  .signal-card__logo{
    width:100% !important;
    max-width:160px !important;
    height:118px !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .signal-card__name{
    font-size:20px !important;
    line-height:1.08 !important;
  }

  .signal-card__meta{
    font-size:14px !important;
  }

  .signal-card__button{
    width:100% !important;
    justify-content:center !important;
    min-height:46px !important;
  }

  .site-footer__inner{
    flex-direction:column !important;
    text-align:center !important;
    gap:8px !important;
  }
}

@media (max-width: 640px){

  .container{
    width:min(100% - 22px, 1180px) !important;
  }

  .brand img{
    max-width:220px !important;
  }

  .nav{
    justify-content:flex-start !important;
  }

  .nav a{
    min-height:40px !important;
    padding:9px 12px !important;
    font-size:13px !important;
  }

  .section{
    padding-top:30px !important;
    padding-bottom:30px !important;
  }

  .page-hero{
    padding-top:24px !important;
    padding-bottom:18px !important;
  }

  .page-hero__box{
    padding:26px 20px !important;
  }

  .page-hero__title,
  .digital-hero__copy h1{
    font-size:clamp(34px, 11vw, 48px) !important;
    line-height:.98 !important;
  }

  .page-hero__subtitle,
  .digital-hero__copy p{
    font-size:16px !important;
    line-height:1.6 !important;
  }

  .cards-grid,
  .cards-grid--list{
    grid-template-columns:1fr !important;
  }

  .signal-card{
    padding:18px !important;
  }

  .signal-card__top{
    gap:8px !important;
  }

  .signal-label,
  .status-pill{
    font-size:11px !important;
  }

  .signal-card__logo{
    height:126px !important;
    max-width:178px !important;
  }

  .signal-card__name{
    font-size:22px !important;
  }

  .summary-pill{
    font-size:13px !important;
    min-height:38px !important;
  }

  .info-banner,
  .empty-state{
    border-radius:18px !important;
    font-size:15px !important;
  }
}

@media (max-width: 420px){

  .brand img{
    max-width:198px !important;
  }

  .home-access-card{
    padding:20px !important;
    border-radius:24px !important;
  }

  .home-access-card__head{
    gap:10px !important;
  }

  .home-access-card__icon{
    width:44px !important;
    height:44px !important;
    flex-basis:44px !important;
    border-radius:14px !important;
  }

  .home-access-card__icon svg{
    width:23px !important;
    height:23px !important;
  }

  .home-access-card h2{
    font-size:28px !important;
  }

  .home-access-card > b{
    width:54px !important;
    height:54px !important;
    flex-basis:54px !important;
    font-size:26px !important;
  }
}

/* IPTV_MOBILE_POLISH_PUBLIC_END */\n\n
/* IPTV_MOBILE_HERO_POLISH_START */

.button--light{
  background:#ffffff !important;
  color:#003b7a !important;
  border:1px solid #dfe7f0 !important;
  box-shadow:0 12px 28px rgba(10,24,56,.08) !important;
}

@media (max-width: 760px){

  .home-hero,
  .hero{
    padding:22px !important;
    border-radius:24px !important;
  }

  .home-hero .eyebrow,
  .hero .eyebrow{
    width:100% !important;
    justify-content:center !important;
    text-align:center !important;
    font-size:12px !important;
    padding:10px 14px !important;
    margin-bottom:18px !important;
  }

  .home-hero h1,
  .hero h1{
    font-size:clamp(34px, 10vw, 44px) !important;
    line-height:.98 !important;
    letter-spacing:-.055em !important;
    margin-bottom:16px !important;
  }

  .home-hero p,
  .hero p{
    font-size:16px !important;
    line-height:1.62 !important;
    max-width:100% !important;
    margin-bottom:22px !important;
  }

  .hero-actions,
  .home-hero__actions{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
    width:100% !important;
  }

  .hero-actions a,
  .home-hero__actions a,
  .button{
    width:100% !important;
    min-height:50px !important;
    justify-content:center !important;
    text-align:center !important;
    border-radius:999px !important;
    font-size:14px !important;
    padding:13px 18px !important;
  }
}

@media (max-width: 420px){

  .home-hero,
  .hero{
    padding:20px !important;
  }

  .home-hero h1,
  .hero h1{
    font-size:35px !important;
  }

  .home-hero p,
  .hero p{
    font-size:15.5px !important;
  }

  .hero-actions,
  .home-hero__actions{
    gap:9px !important;
  }

  .button{
    min-height:48px !important;
  }
}

/* IPTV_MOBILE_HERO_POLISH_END */
\n


/* IPTV_MOBILE_PRESENCE_POLISH_START */

@media (max-width: 760px){

  .diaspora-strip,
  .commercial-presence,
  .presence-card{
    padding:22px !important;
    border-radius:24px !important;
  }

  .diaspora-strip{
    box-shadow:0 14px 30px rgba(10,24,56,.08) !important;
  }

  .diaspora-strip h2,
  .commercial-presence__title,
  .presence-card h2{
    font-size:21px !important;
    line-height:1.18 !important;
    margin-bottom:16px !important;
  }

  .diaspora-strip .eyebrow,
  .commercial-presence .eyebrow,
  .presence-card .eyebrow{
    font-size:12px !important;
    letter-spacing:.04em !important;
    margin-bottom:8px !important;
  }

  .diaspora-strip__places,
  .commercial-presence__places,
  .presence-card__places{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:9px !important;
    align-items:center !important;
  }

  .diaspora-strip__places span,
  .commercial-presence__places span,
  .presence-card__places span,
  .diaspora-strip__places b,
  .commercial-presence__places b,
  .presence-card__places b{
    width:100% !important;
    min-height:38px !important;
    padding:9px 10px !important;
    justify-content:center !important;
    text-align:center !important;
    font-size:13px !important;
    line-height:1.1 !important;
    border-radius:999px !important;
  }

  .diaspora-strip__places span:last-child,
  .commercial-presence__places span:last-child,
  .presence-card__places span:last-child,
  .diaspora-strip__places b:last-child,
  .commercial-presence__places b:last-child,
  .presence-card__places b:last-child{
    grid-column:1 / -1 !important;
    max-width:220px !important;
    justify-self:center !important;
    background:#fff1f3 !important;
    color:#c8102e !important;
    border-color:rgba(200,16,46,.18) !important;
  }
}

@media (max-width: 420px){

  .diaspora-strip,
  .commercial-presence,
  .presence-card{
    padding:20px !important;
  }

  .diaspora-strip h2,
  .commercial-presence__title,
  .presence-card h2{
    font-size:20px !important;
  }

  .diaspora-strip__places,
  .commercial-presence__places,
  .presence-card__places{
    gap:8px !important;
  }

  .diaspora-strip__places span,
  .commercial-presence__places span,
  .presence-card__places span,
  .diaspora-strip__places b,
  .commercial-presence__places b,
  .presence-card__places b{
    min-height:36px !important;
    font-size:12.5px !important;
  }
}

/* IPTV_MOBILE_PRESENCE_POLISH_END */


/* IPTV_PRESENCE_GRID_FIX_START */

@media (max-width:760px){

  .diaspora-strip{
    padding:20px !important;
    border-radius:24px !important;
  }

  .diaspora-strip h2{
    font-size:21px !important;
    line-height:1.15 !important;
    margin:0 0 18px !important;
  }

  .diaspora-strip .eyebrow{
    display:block !important;
    margin-bottom:8px !important;
    font-size:12px !important;
    line-height:1.1 !important;
  }

  .diaspora-strip__places,
  .diaspora-strip .places,
  .diaspora-strip .chips,
  .diaspora-strip .tags{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:10px !important;
    width:100% !important;
  }

  .diaspora-strip__places > *,
  .diaspora-strip .places > *,
  .diaspora-strip .chips > *,
  .diaspora-strip .tags > *{
    width:100% !important;
    min-width:0 !important;
    max-width:none !important;
    min-height:38px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    padding:9px 10px !important;
    margin:0 !important;
    font-size:12.5px !important;
    line-height:1.1 !important;
    white-space:normal !important;
  }

  .diaspora-strip__places > *:last-child,
  .diaspora-strip .places > *:last-child,
  .diaspora-strip .chips > *:last-child,
  .diaspora-strip .tags > *:last-child{
    grid-column:auto !important;
    max-width:none !important;
    justify-self:stretch !important;
    background:#fff1f3 !important;
    color:#c8102e !important;
    border-color:rgba(200,16,46,.18) !important;
  }
}

@media (max-width:390px){
  .diaspora-strip__places,
  .diaspora-strip .places,
  .diaspora-strip .chips,
  .diaspora-strip .tags{
    gap:8px !important;
  }

  .diaspora-strip__places > *,
  .diaspora-strip .places > *,
  .diaspora-strip .chips > *,
  .diaspora-strip .tags > *{
    font-size:12px !important;
    padding:8px 8px !important;
  }
}

/* IPTV_PRESENCE_GRID_FIX_END */


/* IPTV_PLAYER_POLISH_START */

.player-page{
  min-height:70vh;
}

.player-back-row{
  margin-bottom:18px;
}

.player-back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:10px 15px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid #dfe7f0;
  color:#003b7a;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 10px 24px rgba(10,24,56,.06);
}

.player-shell{
  width:100%;
}

.player-loading,
.player-error{
  min-height:420px;
  border-radius:30px;
  background:#ffffff;
  border:1px solid #dfe7f0;
  box-shadow:0 20px 44px rgba(10,24,56,.08);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:34px;
}

.player-loading strong{
  color:#003b7a;
  font-size:30px;
  line-height:1;
  margin-bottom:10px;
}

.player-loading span,
.player-error p{
  color:#5f6f89;
  font-size:16px;
  line-height:1.6;
}

.player-error__icon{
  width:64px;
  height:64px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#fff1f3;
  color:#c8102e;
  border:1px solid rgba(200,16,46,.18);
  font-weight:1000;
  font-size:34px;
  margin-bottom:16px;
}

.player-error h1{
  margin:0 0 10px;
  color:#003b7a;
  font-size:34px;
  line-height:1.05;
}

.player-error__actions{
  margin-top:20px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.player-layout{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:22px;
  align-items:stretch;
}

.player-info{
  background:#ffffff;
  border:1px solid #dfe7f0;
  border-radius:30px;
  padding:24px;
  box-shadow:0 20px 44px rgba(10,24,56,.08);
}

.player-logo{
  width:150px;
  height:120px;
  border-radius:24px;
  background:#f4f7fb;
  border:1px solid #dfe7f0;
  display:grid;
  place-items:center;
  overflow:hidden;
  margin-bottom:18px;
}

.player-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:10px;
}

.player-logo span{
  color:#003b7a;
  font-size:32px;
  font-weight:1000;
}

.player-status{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.03em;
  margin-bottom:14px;
}

.player-status--live{
  background:#ecfdf5;
  color:#047857;
  border:1px solid #bbf7d0;
}

.player-status--review{
  background:#fffbeb;
  color:#b45309;
  border:1px solid #fde68a;
}

.player-status--offline{
  background:#f1f5f9;
  color:#64748b;
  border:1px solid #e2e8f0;
}

.player-info h1{
  margin:0 0 8px;
  color:#003b7a;
  font-size:34px;
  line-height:1.03;
  letter-spacing:-.035em;
}

.player-info p{
  margin:0 0 18px;
  color:#5f6f89;
  font-size:16px;
  line-height:1.5;
}

.player-meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:20px;
}

.player-meta span{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  min-height:34px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:#f3f6fa;
  border:1px solid #dfe7f0;
  color:#334155;
  font-size:13px;
  font-weight:900;
}

.player-side-actions{
  display:grid;
  gap:10px;
}

.player-stage{
  min-height:520px;
  border-radius:30px;
  background:#07111f;
  box-shadow:0 24px 54px rgba(10,24,56,.16);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.player-screen{
  flex:1;
  min-height:450px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 80% 18%, rgba(0,103,177,.24), transparent 28%),
    linear-gradient(135deg,#06101f 0%,#111827 100%);
}

.player-screen video{
  width:100%;
  height:100%;
  min-height:450px;
  background:#000;
  display:block;
}

.player-screen--radio{
  padding:28px;
  gap:22px;
  align-content:center;
}

.player-screen--radio audio{
  width:min(720px, 100%);
}

.radio-visual{
  text-align:center;
  color:#ffffff;
}

.radio-visual__logo{
  width:150px;
  height:150px;
  border-radius:36px;
  margin:0 auto 18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  display:grid;
  place-items:center;
  overflow:hidden;
}

.radio-visual__logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:14px;
}

.radio-visual__logo span{
  font-size:36px;
  font-weight:1000;
}

.radio-visual h2{
  margin:0 0 8px;
  font-size:34px;
  line-height:1.05;
}

.radio-visual p{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:17px;
}

.player-note{
  padding:14px 18px;
  background:#ffffff;
  color:#5f6f89;
  border-top:1px solid #dfe7f0;
  font-size:14px;
  line-height:1.5;
}

.player-stage--message{
  background:#ffffff;
  border:1px solid #dfe7f0;
  box-shadow:0 20px 44px rgba(10,24,56,.08);
  align-items:center;
  justify-content:center;
  padding:30px;
}

.player-message{
  text-align:center;
  max-width:520px;
}

.player-message strong{
  display:block;
  color:#003b7a;
  font-size:32px;
  line-height:1.05;
  margin-bottom:12px;
}

.player-message p{
  color:#5f6f89;
  line-height:1.65;
  margin:0 0 20px;
}

@media (max-width:980px){
  .player-layout{
    grid-template-columns:1fr;
  }

  .player-info{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:16px;
    align-items:center;
  }

  .player-logo{
    margin:0;
    width:118px;
    height:98px;
    border-radius:20px;
  }

  .player-info h1{
    font-size:30px;
  }

  .player-meta,
  .player-side-actions{
    grid-column:1 / -1;
  }

  .player-side-actions{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:640px){
  .player-back-row{
    margin-bottom:14px;
  }

  .player-back{
    width:100%;
    justify-content:center;
  }

  .player-info{
    grid-template-columns:1fr;
    text-align:center;
    border-radius:24px;
    padding:20px;
  }

  .player-logo{
    margin:0 auto;
  }

  .player-status{
    margin-left:auto;
    margin-right:auto;
  }

  .player-info h1{
    font-size:28px;
  }

  .player-meta{
    align-items:center;
  }

  .player-meta span{
    width:100%;
    justify-content:center;
  }

  .player-side-actions{
    grid-template-columns:1fr;
  }

  .player-stage{
    min-height:auto;
    border-radius:24px;
  }

  .player-screen{
    min-height:260px;
  }

  .player-screen video{
    min-height:260px;
  }

  .player-screen--radio{
    padding:22px;
  }

  .radio-visual__logo{
    width:118px;
    height:118px;
    border-radius:28px;
  }

  .radio-visual h2{
    font-size:28px;
  }

  .player-loading,
  .player-error{
    min-height:340px;
    border-radius:24px;
    padding:24px;
  }

  .player-loading strong,
  .player-error h1,
  .player-message strong{
    font-size:27px;
  }

  .player-error__actions{
    width:100%;
  }

  .player-error__actions .button{
    width:100%;
  }
}

/* IPTV_PLAYER_POLISH_END */


/* IPTV_PUBLIC_LISTINGS_POLISH_START */

.listing-filters{
  margin:16px 0 22px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.listing-filter{
  min-height:42px;
  padding:10px 15px;
  border-radius:999px;
  border:1px solid #dfe7f0;
  background:#ffffff;
  color:#334155;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(10,24,56,.05);
}

.listing-filter.is-active{
  background:#003b7a;
  color:#ffffff;
  border-color:#003b7a;
}

.cards-grid--list{
  align-items:stretch;
}

.signal-card{
  transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.signal-card:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 46px rgba(10,24,56,.12);
  border-color:rgba(0,59,122,.18);
}

.signal-card__logo{
  background:
    radial-gradient(circle at 80% 15%, rgba(0,103,177,.08), transparent 28%),
    #f8fafc;
}

.signal-card--offline{
  opacity:.82;
}

.signal-card--offline .signal-card__logo img{
  filter:grayscale(.25);
}

.signal-card__button--digital{
  background:#374151 !important;
  color:#ffffff !important;
}

.page-hero__box{
  position:relative;
  overflow:hidden;
}

.page-hero__box::after{
  content:"";
  position:absolute;
  width:230px;
  height:230px;
  right:-70px;
  top:-80px;
  border-radius:50%;
  background:rgba(0,59,122,.055);
  pointer-events:none;
}

body[data-page="radio"] .page-hero__box::after{
  background:rgba(200,16,46,.07);
}

body[data-page="medios"] .page-hero__box::after{
  background:rgba(55,65,81,.08);
}

@media (max-width:760px){
  .listing-filters{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin:14px 0 18px;
  }

  .listing-filter{
    min-height:40px;
    padding:9px 10px;
    font-size:13px;
  }

  .signal-card:hover{
    transform:none;
  }
}

@media (max-width:390px){
  .listing-filter{
    font-size:12px;
  }
}

/* IPTV_PUBLIC_LISTINGS_POLISH_END */


/* IPTV_DESKTOP_HERO_SAFE_FIX_START */

@media (min-width: 981px){

  .home-hero h1,
  .hero h1{
    font-size:clamp(52px, 4.6vw, 72px) !important;
    line-height:1 !important;
    letter-spacing:-.055em !important;
    max-width:880px !important;
    margin-top:24px !important;
    margin-bottom:20px !important;
  }

  .home-hero p,
  .hero p{
    max-width:720px !important;
    font-size:18px !important;
    line-height:1.65 !important;
  }

  .home-hero,
  .hero{
    display:block !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px){

  .home-hero h1,
  .hero h1{
    font-size:clamp(46px, 5vw, 62px) !important;
    max-width:760px !important;
  }
}

/* IPTV_DESKTOP_HERO_SAFE_FIX_END */


/* IPTV_HOME_TITLE_LINES_START */

.hero-title-fixed{
  display:block !important;
  max-width:920px !important;
}

.hero-title-fixed span{
  display:block !important;
  white-space:nowrap !important;
}

@media (min-width:981px){
  .hero-title-fixed{
    font-size:clamp(58px, 5.2vw, 86px) !important;
    line-height:.98 !important;
    letter-spacing:-.06em !important;
    margin-top:24px !important;
    margin-bottom:22px !important;
  }
}

@media (max-width:980px){
  .hero-title-fixed{
    font-size:clamp(38px, 8vw, 56px) !important;
    line-height:1 !important;
    letter-spacing:-.055em !important;
  }
}

@media (max-width:520px){
  .hero-title-fixed{
    font-size:clamp(32px, 9.2vw, 42px) !important;
    line-height:1.02 !important;
  }

  .hero-title-fixed span{
    white-space:normal !important;
  }
}

/* IPTV_HOME_TITLE_LINES_END */


/* IPTV_FOOTER_INSTITUCIONAL_START */

.site-footer--institutional{
  background:
    radial-gradient(circle at 88% 10%, rgba(200,16,46,.18), transparent 26%),
    linear-gradient(135deg,#06295a 0%, #021d43 100%) !important;
  color:#ffffff !important;
  margin-top:0 !important;
  padding:0 !important;
}

.footer-main{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:42px;
  padding-top:46px;
  padding-bottom:34px;
  align-items:start;
}

.footer-brand-block{
  max-width:620px;
}

.footer-logo{
  display:inline-flex;
  align-items:center;
  background:#ffffff;
  border-radius:22px;
  padding:14px 18px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 18px 40px rgba(0,0,0,.16);
  margin-bottom:18px;
}

.footer-logo img{
  height:58px;
  width:auto;
  max-width:280px;
  object-fit:contain;
}

.footer-brand-block p{
  margin:0 0 18px;
  color:rgba(255,255,255,.82);
  font-size:17px;
  line-height:1.7;
  max-width:560px;
}

.footer-country{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.16);
  color:#ffffff;
  font-weight:950;
  font-size:13px;
}

.footer-links-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.footer-links{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  padding:22px;
}

.footer-links h3{
  margin:0 0 14px;
  color:#ffffff;
  font-size:16px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.footer-links a,
.footer-links span{
  display:flex;
  min-height:32px;
  align-items:center;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-weight:750;
  font-size:14px;
  line-height:1.35;
}

.footer-links a:hover{
  color:#ffffff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:18px;
  padding-bottom:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.footer-bottom small{
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.5;
}

@media (max-width:900px){
  .footer-main{
    grid-template-columns:1fr;
    gap:26px;
    padding-top:36px;
    padding-bottom:26px;
  }

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

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }
}

@media (max-width:520px){
  .footer-logo{
    width:100%;
    justify-content:center;
  }

  .footer-logo img{
    max-width:230px;
    height:auto;
  }

  .footer-brand-block{
    text-align:center;
  }

  .footer-brand-block p{
    font-size:15.5px;
  }

  .footer-links{
    text-align:center;
  }

  .footer-links a,
  .footer-links span{
    justify-content:center;
  }
}

/* IPTV_FOOTER_INSTITUCIONAL_END */


/* IPTV_FOOTER_CLEAN_START */

.site-footer--clean{
  background:#06295a !important;
  color:#ffffff !important;
  padding:0 !important;
  margin-top:0 !important;
}

.footer-clean{
  min-height:132px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding-top:28px;
  padding-bottom:24px;
}

.footer-clean__brand{
  display:flex;
  align-items:center;
  gap:18px;
}

.footer-clean__brand img{
  width:auto;
  height:54px;
  max-width:230px;
  object-fit:contain;
  background:#ffffff;
  border-radius:18px;
  padding:10px 14px;
}

.footer-clean__brand p{
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:16px;
  line-height:1.5;
  font-weight:700;
}

.footer-clean__nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:10px;
}

.footer-clean__nav a{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:9px 13px;
  border-radius:999px;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
}

.footer-clean__nav a:hover{
  color:#ffffff;
  background:rgba(255,255,255,.10);
}

.footer-clean__bottom{
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding-top:16px;
  padding-bottom:18px;
}

.footer-clean__bottom small{
  color:rgba(255,255,255,.70);
  font-size:14px;
  line-height:1.5;
}

@media (max-width:820px){
  .footer-clean{
    flex-direction:column;
    text-align:center;
    min-height:auto;
    padding-top:30px;
    padding-bottom:22px;
  }

  .footer-clean__brand{
    flex-direction:column;
    gap:12px;
  }

  .footer-clean__nav{
    justify-content:center;
  }

  .footer-clean__bottom{
    flex-direction:column;
    text-align:center;
  }
}

@media (max-width:460px){
  .footer-clean__brand img{
    height:auto;
    max-width:220px;
  }

  .footer-clean__nav{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
  }

  .footer-clean__nav a{
    justify-content:center;
  }
}

/* IPTV_FOOTER_CLEAN_END */


/* IPTV_DIASPORA_TAGS_SLIDER_START */

.diaspora-tags-section{
  padding-top:34px !important;
  padding-bottom:34px !important;
}

.diaspora-tags-card{
  overflow:hidden;
  border-radius:30px;
  background:#ffffff;
  border:1px solid #dfe7f0;
  box-shadow:0 16px 38px rgba(10,24,56,.07);
  padding:26px 0 28px;
}

.diaspora-tags-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0 30px 20px;
}

.diaspora-tags-head .eyebrow{
  margin:0 !important;
}

.diaspora-tags-head h2{
  margin:0;
  color:#003b7a;
  font-size:clamp(24px,2.2vw,34px);
  line-height:1.05;
  letter-spacing:-.035em;
  text-align:right;
}

.diaspora-tags-slider{
  position:relative;
  overflow:hidden;
  width:100%;
  padding:4px 0;
  mask-image:linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image:linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.diaspora-tags-track{
  width:max-content;
  display:flex;
  align-items:center;
  gap:14px;
  padding-left:14px;
  animation:diasporaTagsMove 32s linear infinite;
}

.diaspora-tags-slider:hover .diaspora-tags-track{
  animation-play-state:paused;
}

.diaspora-tags-track span{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:11px 22px;
  border-radius:999px;
  background:#eef5ff;
  border:1px solid #cfe0f6;
  color:#003b7a;
  font-weight:950;
  font-size:15px;
  line-height:1;
  box-shadow:0 10px 24px rgba(10,24,56,.05);
}

.diaspora-tags-track .is-rd{
  background:#fff1f3;
  border-color:rgba(200,16,46,.20);
  color:#c8102e;
}

@keyframes diasporaTagsMove{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

@media (max-width:760px){
  .diaspora-tags-section{
    padding-top:26px !important;
    padding-bottom:30px !important;
  }

  .diaspora-tags-card{
    border-radius:24px;
    padding:22px 0 24px;
  }

  .diaspora-tags-head{
    flex-direction:column;
    text-align:center;
    padding:0 20px 18px;
    gap:10px;
  }

  .diaspora-tags-head h2{
    text-align:center;
    font-size:clamp(24px,7vw,34px);
  }

  .diaspora-tags-track{
    gap:10px;
    animation-duration:28s;
  }

  .diaspora-tags-track span{
    min-height:40px;
    padding:9px 15px;
    font-size:13px;
  }
}

/* IPTV_DIASPORA_TAGS_SLIDER_END */\n\n
/* IPTV_CENTER_DIASPORA_TITLE_START */

.diaspora-tags-head{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  gap:12px !important;
  padding:0 30px 22px !important;
}

.diaspora-tags-head .eyebrow{
  margin:0 auto !important;
}

.diaspora-tags-head h2{
  width:100% !important;
  max-width:920px !important;
  margin:0 auto !important;
  text-align:center !important;
}

/* IPTV_CENTER_DIASPORA_TITLE_END */
\n


/* IPTV_DIASPORA_TITLE_REAL_CENTER_START */

@media (min-width: 761px){

  .diaspora-tags-head{
    position:relative !important;
    display:block !important;
    width:100% !important;
    padding:0 34px 24px !important;
    text-align:center !important;
  }

  .diaspora-tags-head .eyebrow{
    position:absolute !important;
    left:34px !important;
    top:50% !important;
    transform:translateY(-50%) !important;
    margin:0 !important;
    z-index:2 !important;
  }

  .diaspora-tags-head h2{
    display:block !important;
    width:100% !important;
    max-width:1000px !important;
    margin:0 auto !important;
    padding:0 250px !important;
    text-align:center !important;
  }
}

@media (max-width: 760px){

  .diaspora-tags-head{
    position:relative !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    gap:10px !important;
    padding:0 20px 18px !important;
  }

  .diaspora-tags-head .eyebrow{
    position:static !important;
    transform:none !important;
    margin:0 auto !important;
  }

  .diaspora-tags-head h2{
    width:100% !important;
    max-width:100% !important;
    padding:0 !important;
    text-align:center !important;
  }
}

/* IPTV_DIASPORA_TITLE_REAL_CENTER_END */


/* IPTV_REMOVE_PRESENCIA_BADGE_START */

.diaspora-tags-head{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  padding:0 30px 22px !important;
}

.diaspora-tags-head .eyebrow{
  display:none !important;
}

.diaspora-tags-head h2{
  width:100% !important;
  max-width:1000px !important;
  margin:0 auto !important;
  padding:0 !important;
  text-align:center !important;
}

/* IPTV_REMOVE_PRESENCIA_BADGE_END */\n\n
/* IPTV_REMOVE_PUBLIC_DIRECT_LINK_START */

.player-side-actions{
  grid-template-columns:1fr !important;
}

.player-side-actions .button{
  width:100% !important;
  justify-content:center !important;
}

/* IPTV_REMOVE_PUBLIC_DIRECT_LINK_END */
\n

/* ===== Reemplazo institucional de métricas en home ===== */
.home-metrics--info{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:28px;
}

.home-metric--info{
  padding:26px 28px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  min-height:165px;
}

.home-metric--info strong{
  font-size:1.42rem;
  line-height:1.18;
  letter-spacing:-0.02em;
  margin-bottom:10px;
}

.home-metric--info span{
  font-size:1rem;
  line-height:1.65;
}

@media (max-width: 980px){
  .home-metrics--info{
    grid-template-columns:1fr;
  }

  .home-metric--info{
    min-height:auto;
  }
}


/* IPTV_FIX_INFO_CARDS_LAYOUT_START */

.home-metrics--info{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:18px !important;
  margin-top:28px !important;
}

.home-metrics--info .home-metric--info{
  min-height:150px !important;
  padding:26px 28px !important;
  display:block !important;
  text-align:left !important;
  border-radius:26px !important;
}

.home-metrics--info .home-metric--info strong{
  display:block !important;
  width:100% !important;
  margin:0 0 10px !important;
  color:#003b7a !important;
  font-size:26px !important;
  line-height:1.05 !important;
  letter-spacing:-.035em !important;
  white-space:normal !important;
}

.home-metrics--info .home-metric--info span{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
  color:#5f6f89 !important;
  font-size:16px !important;
  line-height:1.55 !important;
  font-weight:650 !important;
  white-space:normal !important;
}

@media (max-width:1100px){
  .home-metrics--info{
    grid-template-columns:1fr !important;
  }

  .home-metrics--info .home-metric--info{
    min-height:auto !important;
  }
}

@media (max-width:520px){
  .home-metrics--info .home-metric--info{
    padding:22px !important;
    border-radius:22px !important;
  }

  .home-metrics--info .home-metric--info strong{
    font-size:23px !important;
  }

  .home-metrics--info .home-metric--info span{
    font-size:15px !important;
  }
}

/* IPTV_FIX_INFO_CARDS_LAYOUT_END */


/* IPTV_REMOVE_FLAT_CARDS_SPACING_START */

.home-metrics--info{
  display:none !important;
}

.home-metrics-hidden{
  display:none !important;
}

.diaspora-strip{
  margin-top:26px !important;
}

/* IPTV_REMOVE_FLAT_CARDS_SPACING_END */


/* IPTV_SIMPLE_REFERENCE_HOME_START */

body[data-page="home"]{
  background:#f4f8fd !important;
}

.simple-header{
  background:#ffffff !important;
  border-bottom:1px solid #dfe7f0 !important;
  box-shadow:0 8px 26px rgba(10,24,56,.04) !important;
}

.simple-header__inner{
  min-height:92px !important;
}

.simple-brand img{
  max-height:68px !important;
  width:auto !important;
}

.simple-nav a{
  font-weight:950 !important;
}

.simple-hero{
  padding:36px 0 24px;
  text-align:center;
}

.simple-hero__logo{
  display:flex;
  justify-content:center;
  margin-bottom:12px;
}

.simple-hero__logo img{
  height:112px;
  width:auto;
  max-width:min(460px, 88vw);
  object-fit:contain;
}

.simple-hero h1{
  margin:0 auto 22px;
  max-width:980px;
  color:#003b7a;
  font-size:clamp(36px,4.2vw,62px);
  line-height:.98;
  letter-spacing:-.045em;
}

.simple-category-grid{
  max-width:1260px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.simple-category-card{
  min-height:178px;
  border-radius:12px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:22px;
  padding:28px 34px;
  text-decoration:none;
  color:#ffffff;
  position:relative;
  overflow:hidden;
  box-shadow:0 14px 30px rgba(10,24,56,.13);
}

.simple-category-card::after{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  right:-70px;
  top:-70px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}

.simple-category-card--tv{
  background:linear-gradient(135deg,#003b7a 0%,#064b95 100%);
}

.simple-category-card--digital{
  background:linear-gradient(135deg,#172033 0%,#384459 100%);
}

.simple-category-card--radio{
  background:linear-gradient(135deg,#c8102e 0%,#d8072f 100%);
}

.simple-category-card__icon{
  width:88px;
  height:88px;
  border-radius:20px;
  display:grid;
  place-items:center;
  color:#ffffff;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.12);
  position:relative;
  z-index:2;
}

.simple-category-card__icon svg{
  width:52px;
  height:52px;
}

.simple-category-card__text{
  text-align:left;
  position:relative;
  z-index:2;
  padding-left:20px;
  border-left:2px solid rgba(255,255,255,.45);
}

.simple-category-card__text h2{
  margin:0;
  color:#ffffff;
  font-size:clamp(26px,2.1vw,38px);
  line-height:1.03;
  letter-spacing:-.035em;
}

.simple-category-card__text p{
  margin:8px 0 0;
  color:#ffffff;
  font-size:22px;
  line-height:1;
  font-weight:800;
}

.simple-category-card__arrow{
  width:62px;
  height:62px;
  border-radius:50%;
  background:#ffffff;
  color:#003b7a;
  display:grid;
  place-items:center;
  font-size:34px;
  font-weight:950;
  position:relative;
  z-index:2;
}

.simple-featured{
  padding:18px 0 34px;
}

.simple-featured__grid{
  display:grid;
  gap:26px;
}

.simple-featured-block{
  min-width:0;
}

.simple-section-title{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 14px;
}

.simple-section-title__mark{
  width:6px;
  height:38px;
  border-radius:999px;
  background:#c8102e;
  display:inline-block;
}

.simple-section-title h2{
  margin:0;
  color:#003b7a;
  font-size:28px;
  line-height:1;
  letter-spacing:-.025em;
}

.simple-card-row{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.simple-card-row .signal-card{
  min-height:0 !important;
}

.simple-card-row .signal-card__logo{
  height:110px !important;
}

.simple-card-row .signal-card__name{
  font-size:20px !important;
}

.simple-card-row .signal-card__meta{
  font-size:14px !important;
}

.simple-card-row .signal-card__button{
  min-height:44px !important;
}

@media (max-width:1100px){
  .simple-category-grid{
    grid-template-columns:1fr;
  }

  .simple-card-row{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .simple-header__inner{
    min-height:auto !important;
  }

  .simple-brand img{
    max-height:58px !important;
  }

  .simple-hero{
    padding:26px 0 18px;
  }

  .simple-hero__logo img{
    height:86px;
  }

  .simple-hero h1{
    font-size:clamp(32px,9vw,44px);
    margin-bottom:18px;
  }

  .simple-category-card{
    min-height:150px;
    grid-template-columns:auto 1fr auto;
    padding:22px;
    border-radius:14px;
    gap:16px;
  }

  .simple-category-card__icon{
    width:64px;
    height:64px;
    border-radius:17px;
  }

  .simple-category-card__icon svg{
    width:38px;
    height:38px;
  }

  .simple-category-card__text{
    padding-left:14px;
  }

  .simple-category-card__text h2{
    font-size:25px;
  }

  .simple-category-card__text p{
    font-size:18px;
  }

  .simple-category-card__arrow{
    width:50px;
    height:50px;
    font-size:28px;
  }

  .simple-card-row{
    grid-template-columns:1fr;
  }

  .simple-section-title h2{
    font-size:24px;
  }
}

@media (max-width:460px){
  .simple-category-card{
    grid-template-columns:1fr auto;
  }

  .simple-category-card__icon{
    grid-column:1 / -1;
  }

  .simple-category-card__text{
    border-left:0;
    padding-left:0;
  }
}

/* IPTV_SIMPLE_REFERENCE_HOME_END */


/* IPTV DARK DESIGN 3B - GERENCIA DOMINICANA */

.dark-home{
  margin:0;
  background:#020b1b !important;
  color:#fff;
}

.dark-shell{
  width:min(100% - 64px, 1500px);
  margin:0 auto;
}

.dark-header{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(2,11,27,.94);
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(18px);
}

.dark-header__inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.dark-logo img{
  height:64px;
  width:auto;
  max-width:230px;
  object-fit:contain;
  border-radius:8px;
}

.dark-nav{
  display:flex;
  align-items:center;
  gap:34px;
}

.dark-nav a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:18px;
  position:relative;
  padding:14px 0;
}

.dark-nav a.is-active{
  color:#f7b21a;
}

.dark-nav a.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:4px;
  height:4px;
  border-radius:999px;
  background:#ef173b;
}

.dark-account{
  border:1px solid rgba(247,178,26,.9);
  color:#f7b21a !important;
  border-radius:10px;
  padding:12px 18px !important;
}

.dark-hero{
  position:relative;
  min-height:calc(100vh - 78px);
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 14%, rgba(30,102,202,.28), transparent 32%),
    radial-gradient(circle at 50% 58%, rgba(239,23,59,.12), transparent 30%),
    linear-gradient(180deg,#061839 0%,#020b1b 76%,#010713 100%);
}

.dark-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(2,11,27,.12), rgba(2,11,27,.0) 30%, rgba(2,11,27,.0) 70%, rgba(2,11,27,.12)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 120px);
  pointer-events:none;
}

.dark-bg{
  position:absolute;
  top:0;
  bottom:0;
  width:34%;
  opacity:.32;
  filter:saturate(1.15);
  pointer-events:none;
}

.dark-bg--left{
  left:0;
  background:
    radial-gradient(circle at 28% 34%, rgba(33,190,255,.25), transparent 34%),
    linear-gradient(180deg, transparent, rgba(2,11,27,.75)),
    url("assets/brand/logo-enlace-rd.png");
  background-size:cover;
  background-position:left center;
  mix-blend-mode:screen;
}

.dark-bg--right{
  right:0;
  background:
    radial-gradient(circle at 72% 34%, rgba(239,23,59,.24), transparent 35%),
    linear-gradient(180deg, transparent, rgba(2,11,27,.8)),
    url("assets/brand/logo-enlace-rd.png");
  background-size:cover;
  background-position:right center;
  mix-blend-mode:screen;
}

.dark-hero__center{
  position:relative;
  z-index:2;
  max-width:1080px;
  margin:0 auto;
  padding:34px 0 18px;
  text-align:center;
}

.dark-hero__logo{
  display:block;
  width:min(540px, 82vw);
  height:auto;
  margin:0 auto 14px;
  filter:drop-shadow(0 0 26px rgba(58,143,255,.38));
  border-radius:18px;
}

.dark-hero h1{
  margin:0;
  color:#fff;
  font-size:clamp(40px,4.5vw,72px);
  line-height:.96;
  letter-spacing:-.055em;
  text-shadow:0 5px 22px rgba(0,0,0,.4);
}

.dark-hero h1 span,
.dark-hero h1 strong{
  display:block;
}

.dark-hero h1 strong{
  color:#f7b21a;
}

.dark-red-line{
  height:3px;
  width:min(900px, 86vw);
  margin:14px auto 12px;
  border-radius:999px;
  background:#ef173b;
  box-shadow:0 0 16px rgba(239,23,59,.65);
}

.dark-slogan{
  margin:0 0 8px;
  color:#f7b21a;
  font-size:clamp(20px,2vw,32px);
  font-weight:900;
  line-height:1.15;
}

.dark-places{
  margin:0;
  color:#fff;
  font-size:17px;
  line-height:1.5;
}

.dark-places b{
  color:#ef173b;
  margin:0 8px;
}

.dark-badge{
  width:max-content;
  max-width:100%;
  margin:13px auto 0;
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 22px;
  color:#f7b21a;
  border:1px solid rgba(247,178,26,.9);
  border-radius:12px;
  font-weight:950;
  font-size:20px;
  background:rgba(2,11,27,.48);
  box-shadow:0 0 22px rgba(247,178,26,.12);
}

.dark-category-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  margin-top:18px;
}

.dark-category{
  min-height:122px;
  display:grid;
  grid-template-columns:118px 1fr 58px;
  gap:20px;
  align-items:center;
  padding:18px 24px;
  border-radius:12px;
  text-decoration:none;
  color:#fff;
  background:rgba(3,20,48,.72);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}

.dark-category--tv{
  border-color:rgba(43,187,255,.7);
}

.dark-category--digital{
  border-color:rgba(239,23,59,.75);
}

.dark-category--radio{
  border-color:rgba(247,178,26,.75);
}

.dark-category__icon{
  color:#33c4ff;
  display:grid;
  place-items:center;
}

.dark-category--digital .dark-category__icon{
  color:#ff3b5f;
}

.dark-category--radio .dark-category__icon{
  color:#f7b21a;
}

.dark-category__icon svg{
  width:76px;
  height:76px;
}

.dark-category h2{
  margin:0 0 7px;
  color:#fff;
  font-size:24px;
  line-height:1.05;
}

.dark-category--radio h2{
  color:#f7b21a;
}

.dark-category p{
  margin:0;
  color:rgba(255,255,255,.84);
  line-height:1.45;
  font-size:16px;
}

.dark-arrow{
  width:52px;
  height:52px;
  border-radius:50%;
  border:2px solid currentColor;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:30px;
  font-weight:900;
  box-shadow:0 0 18px rgba(239,23,59,.35);
}

.dark-category--radio .dark-arrow{
  color:#f7b21a;
}

.dark-featured{
  position:relative;
  z-index:2;
  padding:26px 0 34px;
}

.dark-featured__top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
  margin-bottom:14px;
}

.dark-featured__top h2{
  margin:0;
  color:#fff;
  font-size:22px;
}

.dark-featured__top h2 span{
  color:#ef173b;
  font-size:32px;
  margin-right:8px;
}

.dark-tabs{
  display:flex;
  align-items:center;
  gap:34px;
}

.dark-tabs a{
  color:rgba(255,255,255,.72);
  text-decoration:none;
  font-weight:800;
  font-size:17px;
  padding-bottom:10px;
  border-bottom:3px solid transparent;
}

.dark-tabs a.is-active{
  color:#fff;
  border-bottom-color:#ef173b;
}

.dark-featured__rows{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:18px;
}

.dark-featured__list{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.dark-featured__list .signal-card{
  background:rgba(8,25,58,.78) !important;
  border:1px solid rgba(255,255,255,.13) !important;
  border-radius:12px !important;
  box-shadow:none !important;
  min-height:150px !important;
  padding:14px !important;
  color:#fff !important;
}

.dark-featured__list .signal-card__top{
  display:none !important;
}

.dark-featured__list .signal-card__logo{
  width:100% !important;
  height:72px !important;
  max-width:100% !important;
  margin:0 auto 10px !important;
  background:transparent !important;
  border:0 !important;
}

.dark-featured__list .signal-card__logo img{
  object-fit:contain !important;
  padding:4px !important;
}

.dark-featured__list .signal-card__name{
  color:#fff !important;
  font-size:16px !important;
  text-align:center !important;
  line-height:1.15 !important;
}

.dark-featured__list .signal-card__meta{
  color:rgba(255,255,255,.7) !important;
  text-align:center !important;
  font-size:13px !important;
}

.dark-featured__list .signal-card__actions{
  display:none !important;
}

.dark-featured__list .status-pill,
.dark-featured__list .signal-card__button{
  display:none !important;
}

.dark-featured__list .signal-card::after{
  content:"• En vivo";
  display:block;
  text-align:center;
  color:#ff2646;
  font-weight:800;
  margin-top:4px;
  font-size:14px;
}

.dark-featured__list + .dark-featured__list .signal-card::after{
  content:"";
}

.dark-featured__list .empty-state{
  color:#fff !important;
  border-color:rgba(255,255,255,.14) !important;
  background:rgba(8,25,58,.78) !important;
}

@media (max-width:1200px){
  .dark-category-grid,
  .dark-featured__rows{
    grid-template-columns:1fr;
  }
}

@media (max-width:900px){
  .dark-shell{
    width:min(100% - 28px, 1500px);
  }

  .dark-header__inner{
    flex-direction:column;
    padding:12px 0;
  }

  .dark-nav{
    width:100%;
    overflow-x:auto;
    gap:18px;
    justify-content:flex-start;
  }

  .dark-account{
    display:none !important;
  }

  .dark-category{
    grid-template-columns:70px 1fr 52px;
    padding:16px;
  }

  .dark-category__icon svg{
    width:54px;
    height:54px;
  }

  .dark-featured__top{
    flex-direction:column;
    align-items:flex-start;
  }

  .dark-featured__list{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:520px){
  .dark-hero__logo{
    width:94vw;
  }

  .dark-hero h1{
    font-size:34px;
  }

  .dark-slogan{
    font-size:20px;
  }

  .dark-places{
    font-size:14px;
  }

  .dark-badge{
    font-size:15px;
  }

  .dark-category{
    grid-template-columns:1fr 52px;
  }

  .dark-category__icon{
    display:none;
  }

  .dark-featured__list{
    grid-template-columns:1fr;
  }
}


/* IPTV_DARK_CODE_FIX_START */

/* Base */
body.dark-home{
  background:#020b1b !important;
  color:#fff !important;
  overflow-x:hidden !important;
}

.dark-shell{
  width:min(100% - 56px, 1500px) !important;
  margin:0 auto !important;
}

/* Header exacto simple, sin Mi cuenta */
.dark-header{
  background:rgba(2,11,27,.96) !important;
  border-bottom:1px solid rgba(255,255,255,.10) !important;
  box-shadow:none !important;
}

.dark-header__inner{
  min-height:74px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
}

.dark-logo img{
  height:62px !important;
  width:auto !important;
  max-width:210px !important;
  object-fit:contain !important;
  border-radius:6px !important;
}

.dark-nav{
  display:flex !important;
  align-items:center !important;
  gap:44px !important;
}

.dark-nav a{
  color:#ffffff !important;
  text-decoration:none !important;
  font-size:18px !important;
  font-weight:900 !important;
  padding:22px 0 18px !important;
  position:relative !important;
}

.dark-nav a.is-active{
  color:#f7b21a !important;
}

.dark-nav a.is-active::after{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  right:0 !important;
  bottom:10px !important;
  height:4px !important;
  border-radius:999px !important;
  background:#ef173b !important;
}

/* Hero con fondo real usando reference-home.png */
.dark-hero{
  position:relative !important;
  min-height:calc(100vh - 74px) !important;
  overflow:hidden !important;
  background:
    linear-gradient(180deg, rgba(2,11,27,.12) 0%, rgba(2,11,27,.20) 62%, rgba(2,11,27,.72) 100%),
    radial-gradient(circle at 50% 14%, rgba(43,130,255,.30), transparent 30%),
    #020b1b !important;
}

.dark-hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  background-image:
    linear-gradient(180deg, rgba(2,11,27,.08), rgba(2,11,27,.60)),
    url("assets/brand/reference-home.png") !important;
  background-size:cover !important;
  background-position:center top !important;
  background-repeat:no-repeat !important;
  opacity:.72 !important;
  pointer-events:none !important;
}

.dark-hero::after{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  background:
    radial-gradient(circle at 50% 22%, rgba(18,88,190,.25), transparent 32%),
    linear-gradient(90deg, rgba(2,11,27,.18) 0%, rgba(2,11,27,.04) 25%, rgba(2,11,27,.04) 75%, rgba(2,11,27,.18) 100%),
    linear-gradient(180deg, transparent 0%, rgba(2,11,27,.55) 78%, rgba(2,11,27,.92) 100%) !important;
  pointer-events:none !important;
}

/* Desactivar fondos inventados anteriores */
.dark-bg,
.dark-bg--left,
.dark-bg--right{
  display:none !important;
}

/* Centro hero */
.dark-hero__center{
  position:relative !important;
  z-index:2 !important;
  max-width:1060px !important;
  margin:0 auto !important;
  text-align:center !important;
  padding:26px 0 10px !important;
}

.dark-hero__logo{
  display:block !important;
  width:min(500px, 74vw) !important;
  height:auto !important;
  margin:0 auto 8px !important;
  border-radius:0 !important;
  box-shadow:none !important;
  filter:drop-shadow(0 0 28px rgba(64,144,255,.40)) !important;
}

.dark-hero h1{
  margin:0 auto !important;
  color:#ffffff !important;
  font-size:clamp(42px,4.2vw,64px) !important;
  line-height:.96 !important;
  letter-spacing:-.05em !important;
  font-weight:1000 !important;
  text-shadow:0 4px 22px rgba(0,0,0,.45) !important;
}

.dark-hero h1 span,
.dark-hero h1 strong{
  display:block !important;
}

.dark-hero h1 strong{
  color:#f7b21a !important;
}

.dark-red-line{
  width:min(900px, 82vw) !important;
  height:3px !important;
  background:#ef173b !important;
  border-radius:999px !important;
  margin:13px auto 10px !important;
  box-shadow:0 0 16px rgba(239,23,59,.65) !important;
}

.dark-slogan{
  margin:0 0 7px !important;
  color:#f7b21a !important;
  font-size:clamp(20px,1.8vw,28px) !important;
  line-height:1.1 !important;
  font-weight:950 !important;
}

.dark-places{
  margin:0 !important;
  color:#ffffff !important;
  font-size:16px !important;
  line-height:1.45 !important;
  font-weight:650 !important;
}

.dark-places b{
  color:#ef173b !important;
  margin:0 8px !important;
}

.dark-badge{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px !important;
  width:max-content !important;
  max-width:100% !important;
  min-height:42px !important;
  margin:11px auto 0 !important;
  padding:9px 20px !important;
  color:#f7b21a !important;
  background:rgba(2,11,27,.42) !important;
  border:1px solid rgba(247,178,26,.95) !important;
  border-radius:10px !important;
  font-size:18px !important;
  font-weight:950 !important;
  box-shadow:0 0 20px rgba(247,178,26,.10) !important;
}

/* Cards principales */
.dark-category-grid{
  position:relative !important;
  z-index:3 !important;
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:18px !important;
  margin-top:18px !important;
}

.dark-category{
  min-height:112px !important;
  display:grid !important;
  grid-template-columns:112px 1fr 54px !important;
  align-items:center !important;
  gap:18px !important;
  padding:16px 24px !important;
  border-radius:12px !important;
  text-decoration:none !important;
  color:#fff !important;
  background:rgba(3,20,48,.70) !important;
  border:1px solid rgba(255,255,255,.16) !important;
  box-shadow:0 16px 36px rgba(0,0,0,.22) !important;
  backdrop-filter:blur(3px) !important;
}

.dark-category--tv{
  border-color:rgba(43,187,255,.82) !important;
}

.dark-category--digital{
  border-color:rgba(239,23,59,.90) !important;
}

.dark-category--radio{
  border-color:rgba(247,178,26,.90) !important;
}

.dark-category__icon{
  display:grid !important;
  place-items:center !important;
  color:#37c8ff !important;
}

.dark-category--digital .dark-category__icon{
  color:#ff3b5f !important;
}

.dark-category--radio .dark-category__icon{
  color:#f7b21a !important;
}

.dark-category__icon svg{
  width:72px !important;
  height:72px !important;
}

.dark-category h2{
  margin:0 0 5px !important;
  color:#ffffff !important;
  font-size:23px !important;
  line-height:1.04 !important;
  font-weight:950 !important;
}

.dark-category--radio h2{
  color:#f7b21a !important;
}

.dark-category p{
  margin:0 !important;
  color:rgba(255,255,255,.84) !important;
  font-size:15px !important;
  line-height:1.38 !important;
}

.dark-arrow{
  width:48px !important;
  height:48px !important;
  border-radius:50% !important;
  display:grid !important;
  place-items:center !important;
  color:#ffffff !important;
  border:2px solid #ef173b !important;
  font-size:28px !important;
  font-weight:1000 !important;
  box-shadow:0 0 18px rgba(239,23,59,.36) !important;
}

.dark-category--radio .dark-arrow{
  color:#ffffff !important;
  border-color:#f7b21a !important;
  box-shadow:0 0 18px rgba(247,178,26,.28) !important;
}

/* Destacados separados */
.dark-featured{
  position:relative !important;
  z-index:3 !important;
  padding:24px 0 34px !important;
}

.dark-featured__top{
  display:grid !important;
  grid-template-columns:1fr auto !important;
  align-items:end !important;
  gap:28px !important;
  margin-bottom:14px !important;
}

.dark-featured__top h2{
  margin:0 !important;
  color:#ffffff !important;
  font-size:22px !important;
  font-weight:950 !important;
}

.dark-featured__top h2 span{
  color:#ef173b !important;
  font-size:32px !important;
  margin-right:8px !important;
}

.dark-tabs{
  display:flex !important;
  align-items:center !important;
  gap:34px !important;
}

.dark-tabs a{
  color:rgba(255,255,255,.68) !important;
  text-decoration:none !important;
  font-weight:850 !important;
  font-size:17px !important;
  padding-bottom:9px !important;
  border-bottom:3px solid transparent !important;
}

.dark-tabs a.is-active{
  color:#ffffff !important;
  border-bottom-color:#ef173b !important;
}

/* Aquí se crea el espacio claro entre canales y emisoras */
.dark-featured__rows{
  display:grid !important;
  grid-template-columns:1.08fr 1fr !important;
  gap:34px !important;
  align-items:start !important;
}

.dark-featured__list{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:14px !important;
  padding:12px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  border-radius:14px !important;
  background:rgba(2,11,27,.18) !important;
}

.dark-featured__list .signal-card{
  background:rgba(8,25,58,.82) !important;
  border:1px solid rgba(255,255,255,.14) !important;
  border-radius:11px !important;
  box-shadow:none !important;
  min-height:138px !important;
  padding:13px !important;
  color:#fff !important;
}

.dark-featured__list .signal-card__top{
  display:none !important;
}

.dark-featured__list .signal-card__logo{
  width:100% !important;
  height:64px !important;
  max-width:100% !important;
  margin:0 auto 10px !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
}

.dark-featured__list .signal-card__logo img{
  object-fit:contain !important;
  padding:4px !important;
}

.dark-featured__list .signal-card__name{
  color:#ffffff !important;
  font-size:16px !important;
  text-align:center !important;
  line-height:1.15 !important;
  min-height:auto !important;
}

.dark-featured__list .signal-card__meta{
  color:rgba(255,255,255,.70) !important;
  text-align:center !important;
  font-size:13px !important;
}

.dark-featured__list .signal-card__actions{
  display:none !important;
}

.dark-featured__list .signal-card::after{
  content:"• En vivo" !important;
  display:block !important;
  text-align:center !important;
  color:#ff2849 !important;
  font-weight:900 !important;
  margin-top:4px !important;
  font-size:14px !important;
}

.dark-featured__list + .dark-featured__list .signal-card::after{
  content:"" !important;
}

@media (max-width:1200px){
  .dark-category-grid,
  .dark-featured__rows{
    grid-template-columns:1fr !important;
  }
}

@media (max-width:900px){
  .dark-shell{
    width:min(100% - 28px, 1500px) !important;
  }

  .dark-header__inner{
    flex-direction:column !important;
    align-items:center !important;
    padding:12px 0 !important;
  }

  .dark-nav{
    width:100% !important;
    overflow-x:auto !important;
    gap:22px !important;
    justify-content:flex-start !important;
  }

  .dark-hero::before{
    opacity:.50 !important;
  }

  .dark-category{
    grid-template-columns:70px 1fr 48px !important;
    padding:16px !important;
  }

  .dark-category__icon svg{
    width:54px !important;
    height:54px !important;
  }

  .dark-featured__top{
    grid-template-columns:1fr !important;
  }

  .dark-featured__list{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media (max-width:520px){
  .dark-hero__logo{
    width:92vw !important;
  }

  .dark-hero h1{
    font-size:34px !important;
  }

  .dark-slogan{
    font-size:20px !important;
  }

  .dark-places{
    font-size:14px !important;
  }

  .dark-badge{
    font-size:15px !important;
  }

  .dark-category{
    grid-template-columns:1fr 48px !important;
  }

  .dark-category__icon{
    display:none !important;
  }

  .dark-featured__list{
    grid-template-columns:1fr !important;
  }
}

/* IPTV_DARK_CODE_FIX_END */


/* IPTV_FINAL_SIDE_BACKGROUNDS_START */

/* Hero oscuro base */
body.dark-home{
  background:#020b1b !important;
  color:#fff !important;
  overflow-x:hidden !important;
}

.dark-hero{
  position:relative !important;
  overflow:hidden !important;
  min-height:calc(100vh - 74px) !important;
  background:
    radial-gradient(circle at 50% 14%, rgba(35,112,235,.36), transparent 31%),
    radial-gradient(circle at 50% 55%, rgba(239,23,59,.11), transparent 34%),
    linear-gradient(180deg,#061839 0%,#020b1b 72%,#010713 100%) !important;
}

/* Quitamos cualquier imagen grande general en ::before */
.dark-hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  pointer-events:none !important;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 120px),
    linear-gradient(90deg, rgba(2,11,27,.08), rgba(2,11,27,0) 28%, rgba(2,11,27,0) 72%, rgba(2,11,27,.08)) !important;
  opacity:1 !important;
}

/* Capa de oscurecimiento para integrar los laterales */
.dark-hero::after{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:2 !important;
  pointer-events:none !important;
  background:
    radial-gradient(circle at 50% 20%, rgba(20,104,235,.20), transparent 32%),
    linear-gradient(90deg, rgba(2,11,27,.10) 0%, rgba(2,11,27,.04) 22%, rgba(2,11,27,.04) 78%, rgba(2,11,27,.10) 100%),
    linear-gradient(180deg, transparent 0%, rgba(2,11,27,.20) 58%, rgba(2,11,27,.86) 100%) !important;
}

/* Laterales reales como FONDO, no como imagen dentro del contenido */
.dark-bg{
  display:block !important;
  position:absolute !important;
  top:0 !important;
  bottom:0 !important;
  z-index:0 !important;
  pointer-events:none !important;
  width:40vw !important;
  min-width:460px !important;
  max-width:650px !important;
  background-repeat:no-repeat !important;
  background-size:cover !important;
  opacity:.92 !important;
  filter:saturate(1.08) contrast(1.05) brightness(.90) !important;
}

.dark-bg--left{
  left:0 !important;
  background-image:
    linear-gradient(90deg, rgba(2,11,27,.02) 0%, rgba(2,11,27,.12) 55%, rgba(2,11,27,.88) 100%),
    linear-gradient(180deg, rgba(2,11,27,.05) 0%, rgba(2,11,27,.05) 52%, rgba(2,11,27,.78) 100%),
    url("assets/brand/bg-left-ny.png") !important;
  background-position:left top !important;
}

.dark-bg--right{
  right:0 !important;
  background-image:
    linear-gradient(270deg, rgba(2,11,27,.02) 0%, rgba(2,11,27,.12) 55%, rgba(2,11,27,.88) 100%),
    linear-gradient(180deg, rgba(2,11,27,.05) 0%, rgba(2,11,27,.05) 52%, rgba(2,11,27,.78) 100%),
    url("assets/brand/bg-right-rd.png") !important;
  background-position:right top !important;
}

/* Todo el contenido encima de los fondos */
.dark-shell,
.dark-hero__center,
.dark-category-grid,
.dark-featured{
  position:relative !important;
  z-index:5 !important;
}

/* Centro más parecido a la referencia */
.dark-hero__center{
  padding-top:18px !important;
  padding-bottom:8px !important;
  max-width:1080px !important;
}

.dark-hero__logo{
  width:min(500px, 72vw) !important;
  max-height:260px !important;
  object-fit:contain !important;
  margin:0 auto 6px !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  filter:drop-shadow(0 0 28px rgba(64,144,255,.40)) !important;
}

.dark-hero h1{
  font-size:clamp(42px,4.15vw,64px) !important;
  line-height:.96 !important;
  margin:0 auto !important;
}

.dark-red-line{
  width:min(900px,82vw) !important;
  margin:12px auto 10px !important;
}

/* Tarjetas principales */
.dark-category-grid{
  margin-top:18px !important;
}

/* Separación clara entre destacados TV y Radio */
.dark-featured__rows{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:40px !important;
  align-items:start !important;
}

.dark-featured__list{
  padding:12px !important;
  border-radius:14px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:rgba(2,11,27,.20) !important;
}

/* Quitar Mi cuenta si algún CSS anterior lo muestra */
.dark-account{
  display:none !important;
}

@media (max-width:1200px){
  .dark-bg{
    width:46vw !important;
    min-width:390px !important;
    opacity:.56 !important;
  }

  .dark-featured__rows{
    grid-template-columns:1fr !important;
    gap:24px !important;
  }
}

@media (max-width:760px){
  .dark-bg{
    opacity:.24 !important;
    min-width:330px !important;
  }

  .dark-bg--left{
    left:-120px !important;
  }

  .dark-bg--right{
    right:-140px !important;
  }

  .dark-hero__logo{
    width:92vw !important;
  }
}

/* IPTV_FINAL_SIDE_BACKGROUNDS_END */


/* ==================================================
   FIX LOGOS DESTACADOS - CENTRADOS / SIN CORTES
   ================================================== */

.dark-featured__list > *{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
}

/* Si existe contenedor del logo, lo centramos */
.dark-featured__list > * .logo-box,
.dark-featured__list > * .logo-wrap,
.dark-featured__list > * .card-logo,
.dark-featured__list > * .card-media,
.dark-featured__list > * .thumb,
.dark-featured__list > * .image-wrap,
.dark-featured__list > * .featured-card__media,
.dark-featured__list > * .featured-card__thumb{
  width:100%;
  min-height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

/* Cualquier logo dentro de las tarjetas destacadas */
.dark-featured__list > * img{
  display:block;
  width:auto !important;
  height:auto !important;
  max-width:calc(100% - 36px) !important;
  max-height:118px !important;
  object-fit:contain !important;
  object-position:center center !important;
  margin:22px auto 18px auto !important;
  border-radius:10px;
}

/* Textos centrados debajo */
.dark-featured__list > * h3,
.dark-featured__list > * h4,
.dark-featured__list > * .title,
.dark-featured__list > * .name{
  width:100%;
  text-align:center;
}

.dark-featured__list > * p,
.dark-featured__list > * .meta,
.dark-featured__list > * .subtitle,
.dark-featured__list > * .status{
  width:100%;
  text-align:center;
}

/* Evitar tarjetas deformadas por logos raros */
.dark-featured__list > *{
  min-height:360px;
}

/* ==================================================
   DISEÑO 3C - IDENTIDAD DARK EN PAGINAS PUBLICAS
   tv.html / medios.html / radio.html / player.html
   ================================================== */

body.dark-inner-page{
  background:
    radial-gradient(circle at 50% 0%, rgba(35,112,235,.22), transparent 34%),
    linear-gradient(180deg,#061839 0%,#020b1b 72%,#010713 100%) !important;
  color:#ffffff !important;
  overflow-x:hidden;
}

body.dark-inner-page::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.022) 0 1px, transparent 1px 120px),
    radial-gradient(circle at 12% 20%, rgba(43,187,255,.10), transparent 26%),
    radial-gradient(circle at 86% 22%, rgba(239,23,59,.10), transparent 28%);
}

/* Header público */
body.dark-inner-page .site-header,
body.dark-inner-page .simple-header,
body.dark-inner-page header{
  background:rgba(2,11,27,.96) !important;
  border-bottom:1px solid rgba(255,255,255,.10) !important;
  box-shadow:none !important;
  color:#ffffff !important;
}

body.dark-inner-page .site-header__inner,
body.dark-inner-page .simple-header__inner{
  min-height:76px !important;
}

body.dark-inner-page .brand img,
body.dark-inner-page .simple-brand img,
body.dark-inner-page header img{
  max-height:64px !important;
  width:auto !important;
  object-fit:contain !important;
  border-radius:6px !important;
}

/* Menú */
body.dark-inner-page .nav,
body.dark-inner-page .simple-nav{
  display:flex !important;
  align-items:center !important;
  gap:34px !important;
}

body.dark-inner-page .nav a,
body.dark-inner-page .simple-nav a{
  color:#ffffff !important;
  text-decoration:none !important;
  font-weight:900 !important;
  position:relative !important;
}

body.dark-inner-page .nav a.is-active,
body.dark-inner-page .simple-nav a.is-active,
body.dark-inner-page .nav a:hover,
body.dark-inner-page .simple-nav a:hover{
  color:#f7b21a !important;
}

body.dark-inner-page .nav a.is-active::after,
body.dark-inner-page .simple-nav a.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:4px;
  border-radius:999px;
  background:#ef173b;
}

/* Títulos / headers de páginas */
body.dark-inner-page main{
  color:#ffffff !important;
}

body.dark-inner-page .page-hero,
body.dark-inner-page .listing-hero,
body.dark-inner-page .hero,
body.dark-inner-page .section-hero,
body.dark-inner-page .signals-hero{
  background:rgba(3,20,48,.62) !important;
  border:1px solid rgba(255,255,255,.10) !important;
  box-shadow:0 22px 55px rgba(0,0,0,.24) !important;
  color:#ffffff !important;
}

body.dark-inner-page h1,
body.dark-inner-page h2,
body.dark-inner-page h3{
  color:#ffffff !important;
}

body.dark-inner-page h1 strong,
body.dark-inner-page .accent,
body.dark-inner-page .highlight{
  color:#f7b21a !important;
}

body.dark-inner-page p,
body.dark-inner-page .muted,
body.dark-inner-page .subtitle{
  color:rgba(255,255,255,.76) !important;
}

/* Botones */
body.dark-inner-page .btn,
body.dark-inner-page .button,
body.dark-inner-page button{
  border-radius:999px;
}

body.dark-inner-page .btn--primary,
body.dark-inner-page .button--primary,
body.dark-inner-page .signal-card__button{
  background:#ef173b !important;
  color:#ffffff !important;
  border:1px solid rgba(239,23,59,.75) !important;
  box-shadow:0 12px 28px rgba(239,23,59,.20) !important;
}

body.dark-inner-page .btn--danger{
  background:#ef173b !important;
  color:#ffffff !important;
}

/* Grids */
body.dark-inner-page .signals-grid,
body.dark-inner-page .grid,
body.dark-inner-page .cards-grid{
  gap:18px !important;
}

/* Tarjetas de señales */
body.dark-inner-page .signal-card{
  background:rgba(8,25,58,.82) !important;
  border:1px solid rgba(255,255,255,.14) !important;
  box-shadow:0 18px 38px rgba(0,0,0,.22) !important;
  color:#ffffff !important;
}

body.dark-inner-page .signal-card:hover{
  border-color:rgba(247,178,26,.45) !important;
  box-shadow:0 22px 48px rgba(0,0,0,.30) !important;
}

body.dark-inner-page .signal-card__name,
body.dark-inner-page .signal-card h2,
body.dark-inner-page .signal-card h3{
  color:#ffffff !important;
}

body.dark-inner-page .signal-card__meta,
body.dark-inner-page .signal-card p{
  color:rgba(255,255,255,.70) !important;
}

/* Logos centrados y sin cortes */
body.dark-inner-page .signal-card__logo,
body.dark-inner-page .logo-frame,
body.dark-inner-page .card-logo{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  overflow:hidden !important;
  background:rgba(255,255,255,.04) !important;
  border:1px solid rgba(255,255,255,.10) !important;
}

body.dark-inner-page .signal-card__logo img,
body.dark-inner-page .logo-frame img,
body.dark-inner-page .card-logo img,
body.dark-inner-page .signal-card img{
  display:block !important;
  width:auto !important;
  height:auto !important;
  max-width:86% !important;
  max-height:86% !important;
  object-fit:contain !important;
  object-position:center center !important;
  margin:auto !important;
}

/* Status */
body.dark-inner-page .status-pill--live,
body.dark-inner-page .status-live{
  background:rgba(16,185,129,.14) !important;
  color:#34d399 !important;
}

body.dark-inner-page .status-pill--offline,
body.dark-inner-page .status-offline{
  background:rgba(148,163,184,.16) !important;
  color:#cbd5e1 !important;
}

body.dark-inner-page .status-pill--review,
body.dark-inner-page .status-review{
  background:rgba(247,178,26,.16) !important;
  color:#f7b21a !important;
}

/* Buscador / filtros si existen */
body.dark-inner-page input,
body.dark-inner-page select{
  background:rgba(8,25,58,.90) !important;
  border:1px solid rgba(255,255,255,.14) !important;
  color:#ffffff !important;
}

body.dark-inner-page input::placeholder{
  color:rgba(255,255,255,.46) !important;
}

body.dark-inner-page .filter-btn,
body.dark-inner-page .pill,
body.dark-inner-page .chip{
  background:rgba(8,25,58,.84) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,.14) !important;
}

body.dark-inner-page .filter-btn.is-active,
body.dark-inner-page .pill.is-active,
body.dark-inner-page .chip.is-active{
  background:#ef173b !important;
  color:#ffffff !important;
  border-color:#ef173b !important;
}

/* Player */
body.dark-inner-page[data-page="player"] .player,
body.dark-inner-page[data-page="player"] .player-shell,
body.dark-inner-page[data-page="player"] .player-card,
body.dark-inner-page[data-page="player"] .player-panel,
body.dark-inner-page[data-page="player"] .watch-card{
  background:rgba(8,25,58,.84) !important;
  border:1px solid rgba(255,255,255,.14) !important;
  color:#ffffff !important;
  box-shadow:0 24px 60px rgba(0,0,0,.34) !important;
}

body.dark-inner-page[data-page="player"] iframe,
body.dark-inner-page[data-page="player"] video{
  background:#000 !important;
  border-radius:18px !important;
}

/* Footer si aparece en esas páginas */
body.dark-inner-page .site-footer,
body.dark-inner-page footer{
  background:#020b1b !important;
  border-top:1px solid rgba(255,255,255,.10) !important;
  color:#ffffff !important;
}

body.dark-inner-page .footer-clean__nav a{
  background:rgba(255,255,255,.06) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  color:#ffffff !important;
}

/* Ocultar admin público por seguridad visual */
body.dark-inner-page a[href="admin.html"]{
  display:none !important;
}

@media (max-width:900px){
  body.dark-inner-page .nav,
  body.dark-inner-page .simple-nav{
    gap:20px !important;
    overflow-x:auto !important;
    width:100% !important;
    justify-content:flex-start !important;
  }

  body.dark-inner-page .site-header__inner,
  body.dark-inner-page .simple-header__inner{
    flex-direction:column !important;
    align-items:center !important;
    padding:12px 0 !important;
  }
}

@media (max-width:520px){
  body.dark-inner-page .brand img,
  body.dark-inner-page .simple-brand img,
  body.dark-inner-page header img{
    max-height:54px !important;
  }
}

/* ==================================================
   LISTING DARK FINAL - TV / MEDIOS / RADIO
   ================================================== */

body.dark-listing-page{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(36,115,236,.22), transparent 35%),
    radial-gradient(circle at 86% 30%, rgba(239,23,59,.08), transparent 34%),
    linear-gradient(180deg,#061839 0%,#020b1b 72%,#010713 100%) !important;
  color:#ffffff;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
}

body.dark-listing-page::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.026) 0 1px, transparent 1px 120px),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 38%);
}

.dl-shell{
  width:min(100% - 56px, 1500px);
  margin:0 auto;
}

.dl-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(2,11,27,.96);
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(16px);
}

.dl-header__inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.dl-logo img{
  display:block;
  height:62px;
  width:auto;
  max-width:220px;
  object-fit:contain;
  border-radius:8px;
}

.dl-nav{
  display:flex;
  align-items:center;
  gap:38px;
}

.dl-nav a{
  color:#ffffff;
  text-decoration:none;
  font-weight:900;
  font-size:18px;
  position:relative;
  padding:24px 0 18px;
}

.dl-nav a.is-active{
  color:#f7b21a;
}

.dl-nav a.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:9px;
  height:4px;
  border-radius:999px;
  background:#ef173b;
}

.dl-hero{
  padding:42px 0 32px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.dl-hero__content{
  min-height:260px;
  border-radius:28px;
  background:
    linear-gradient(135deg, rgba(6,24,57,.86), rgba(2,11,27,.76)),
    radial-gradient(circle at 82% 12%, rgba(247,178,26,.16), transparent 27%),
    radial-gradient(circle at 16% 18%, rgba(54,195,255,.12), transparent 30%);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 24px 70px rgba(0,0,0,.28);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:34px 28px;
  overflow:hidden;
}

.dl-hero__logo{
  display:block;
  width:min(360px, 78vw);
  height:auto;
  max-height:150px;
  object-fit:contain;
  margin:0 auto 16px;
  filter:drop-shadow(0 0 24px rgba(64,144,255,.32));
}

.dl-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:7px 16px;
  border-radius:999px;
  background:rgba(247,178,26,.10);
  border:1px solid rgba(247,178,26,.35);
  color:#f7b21a;
  font-size:13px;
  font-weight:950;
  margin-bottom:12px;
}

.dl-hero h1{
  margin:0;
  color:#ffffff;
  font-size:clamp(38px,4.4vw,68px);
  line-height:.96;
  letter-spacing:-.055em;
  font-weight:1000;
}

.dl-hero p{
  max-width:760px;
  margin:14px auto 0;
  color:rgba(255,255,255,.76);
  font-size:18px;
  line-height:1.55;
}

.dl-controls{
  padding:26px 0 22px;
}

.dl-controls__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.dl-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.dl-filters button{
  min-height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(8,25,58,.82);
  color:#ffffff;
  font-weight:950;
  padding:10px 18px;
  cursor:pointer;
}

.dl-filters button.is-active{
  background:#ef173b;
  border-color:#ef173b;
  color:#ffffff;
  box-shadow:0 12px 28px rgba(239,23,59,.22);
}

.dl-search{
  width:min(100%, 470px);
  min-height:50px;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 18px;
  background:rgba(8,25,58,.86);
  border:1px solid rgba(255,255,255,.14);
}

.dl-search span{
  font-size:18px;
}

.dl-search input{
  width:100%;
  min-height:48px;
  border:0 !important;
  outline:0 !important;
  background:transparent !important;
  color:#ffffff !important;
  font:inherit;
}

.dl-search input::placeholder{
  color:rgba(255,255,255,.46);
}

.dl-content{
  padding:0 0 46px;
}

.dl-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.dl-card{
  min-height:355px;
  border-radius:20px;
  background:rgba(8,25,58,.84);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 18px 42px rgba(0,0,0,.24);
  padding:18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  color:#ffffff;
  overflow:hidden;
}

.dl-card:hover{
  border-color:rgba(247,178,26,.48);
}

.dl-card__top{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-bottom:16px;
}

.dl-chip,
.dl-status{
  min-height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:950;
  white-space:nowrap;
}

.dl-chip{
  background:rgba(255,255,255,.92);
  color:#003b7a;
}

.dl-status--live{
  background:rgba(16,185,129,.16);
  color:#34d399;
}

.dl-status--review{
  background:rgba(247,178,26,.17);
  color:#f7b21a;
}

.dl-status--offline{
  background:rgba(148,163,184,.18);
  color:#cbd5e1;
}

.dl-card__logo{
  width:168px;
  height:126px;
  border-radius:22px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin:0 auto 20px;
}

.dl-card__logo img{
  display:block;
  width:auto !important;
  height:auto !important;
  max-width:82% !important;
  max-height:82% !important;
  object-fit:contain !important;
  object-position:center center !important;
  margin:auto !important;
  border-radius:8px;
}

.dl-card__initials{
  width:76px;
  height:76px;
  border-radius:22px;
  background:#eaf2fb;
  color:#003b7a;
  display:grid;
  place-items:center;
  font-size:30px;
  font-weight:1000;
}

.dl-card h2{
  width:100%;
  margin:0 0 8px;
  color:#ffffff;
  font-size:25px;
  line-height:1.08;
  letter-spacing:-.025em;
  font-weight:1000;
}

.dl-card p{
  margin:0 0 22px;
  color:rgba(255,255,255,.68);
  font-size:16px;
  line-height:1.4;
}

.dl-card__button{
  margin-top:auto;
  width:100%;
  min-height:52px;
  border-radius:999px;
  background:#ef173b;
  color:#ffffff;
  border:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:1000;
  font-size:16px;
  box-shadow:0 14px 30px rgba(239,23,59,.22);
}

.dl-card__button:disabled{
  opacity:.55;
  cursor:not-allowed;
  background:#475569;
  box-shadow:none;
}

.dl-empty{
  grid-column:1 / -1;
  min-height:140px;
  border-radius:20px;
  background:rgba(8,25,58,.84);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.70);
  display:grid;
  place-items:center;
  text-align:center;
  padding:24px;
}

.dl-footer{
  border-top:1px solid rgba(255,255,255,.10);
  background:#020b1b;
  padding:34px 0 24px;
}

.dl-footer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-bottom:26px;
}

.dl-footer__brand{
  display:flex;
  align-items:center;
  gap:18px;
}

.dl-footer__brand img{
  width:104px;
  height:auto;
  border-radius:14px;
}

.dl-footer__brand p{
  color:#ffffff;
  font-weight:900;
  margin:0;
}

.dl-footer__nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.dl-footer__nav a{
  color:#ffffff;
  text-decoration:none;
  font-weight:900;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

.dl-footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.66);
}

@media (max-width:1200px){
  .dl-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width:900px){
  .dl-shell{
    width:min(100% - 28px, 1500px);
  }

  .dl-header__inner{
    flex-direction:column;
    padding:12px 0;
  }

  .dl-nav{
    width:100%;
    overflow-x:auto;
    gap:22px;
    justify-content:flex-start;
  }

  .dl-controls__inner{
    flex-direction:column;
    align-items:stretch;
  }

  .dl-search{
    width:100%;
  }

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

  .dl-footer__top,
  .dl-footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width:560px){
  .dl-grid{
    grid-template-columns:1fr;
  }

  .dl-card{
    min-height:auto;
  }

  .dl-hero__content{
    min-height:220px;
    padding:28px 20px;
  }

  .dl-hero h1{
    font-size:38px;
  }

  .dl-card__logo{
    width:150px;
    height:116px;
  }
}

/* ==================================================
   PLAYER DARK FINAL
   ================================================== */

body.dark-player-page{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(36,115,236,.22), transparent 35%),
    radial-gradient(circle at 86% 30%, rgba(239,23,59,.08), transparent 34%),
    linear-gradient(180deg,#061839 0%,#020b1b 72%,#010713 100%) !important;
  color:#ffffff;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
}

body.dark-player-page::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.026) 0 1px, transparent 1px 120px),
    radial-gradient(circle at 14% 20%, rgba(43,187,255,.10), transparent 26%),
    radial-gradient(circle at 84% 24%, rgba(247,178,26,.08), transparent 28%);
}

.dp-shell{
  width:min(100% - 56px, 1500px);
  margin:0 auto;
}

.dp-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(2,11,27,.96);
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(16px);
}

.dp-header__inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.dp-logo img{
  display:block;
  height:62px;
  width:auto;
  max-width:220px;
  object-fit:contain;
  border-radius:8px;
}

.dp-nav{
  display:flex;
  align-items:center;
  gap:38px;
}

.dp-nav a{
  color:#ffffff;
  text-decoration:none;
  font-weight:900;
  font-size:18px;
  position:relative;
  padding:24px 0 18px;
}

.dp-nav a:hover{
  color:#f7b21a;
}

.dp-main{
  padding:38px 0 52px;
}

.dp-player-layout{
  display:grid;
  grid-template-columns:minmax(0,1.5fr) 420px;
  gap:22px;
  align-items:start;
}

.dp-watch-card,
.dp-info-card{
  background:rgba(8,25,58,.84);
  border:1px solid rgba(255,255,255,.14);
  border-radius:24px;
  box-shadow:0 24px 60px rgba(0,0,0,.32);
  overflow:hidden;
}

.dp-watch-card__top{
  min-height:64px;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.dp-back{
  color:#f7b21a;
  text-decoration:none;
  font-weight:950;
}

.dp-status{
  min-height:32px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:950;
  background:rgba(247,178,26,.14);
  color:#f7b21a;
}

.dp-status--live{
  background:rgba(16,185,129,.16);
  color:#34d399;
}

.dp-status--offline{
  background:rgba(148,163,184,.18);
  color:#cbd5e1;
}

.dp-stage{
  aspect-ratio:16/9;
  min-height:360px;
  background:#000;
  display:grid;
  place-items:center;
  position:relative;
}

.dp-loading,
.dp-unavailable,
.dp-audio-player{
  width:100%;
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:34px;
  background:
    radial-gradient(circle at 50% 10%, rgba(36,115,236,.22), transparent 36%),
    linear-gradient(180deg,#061839,#020b1b);
}

.dp-loading img,
.dp-unavailable img{
  width:min(360px, 80%);
  height:auto;
  border-radius:14px;
  margin-bottom:18px;
  filter:drop-shadow(0 0 22px rgba(64,144,255,.30));
}

.dp-loading p,
.dp-unavailable p{
  color:rgba(255,255,255,.72);
  font-size:17px;
  margin:0;
}

.dp-unavailable h2,
.dp-audio-player h2{
  margin:0 0 8px;
  color:#ffffff;
  font-size:34px;
  line-height:1;
}

.dp-frame,
.dp-video{
  width:100%;
  height:100%;
  border:0;
  display:block;
  background:#000;
}

.dp-audio-player__logo{
  width:190px;
  height:150px;
  border-radius:26px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom:22px;
}

.dp-audio-player__logo img{
  display:block;
  width:auto;
  height:auto;
  max-width:84%;
  max-height:84%;
  object-fit:contain;
  margin:auto;
}

.dp-audio-player__logo span{
  width:84px;
  height:84px;
  border-radius:24px;
  background:#eaf2fb;
  color:#003b7a;
  display:grid;
  place-items:center;
  font-size:30px;
  font-weight:1000;
}

.dp-audio-player p{
  margin:0 0 24px;
  color:rgba(255,255,255,.70);
}

.dp-audio-player audio{
  width:min(100%, 620px);
  accent-color:#ef173b;
}

.dp-info-card{
  padding:24px;
}

.dp-info-card__logo{
  width:100%;
  height:190px;
  border-radius:24px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom:18px;
}

.dp-info-card__logo img{
  display:block;
  width:auto;
  height:auto;
  max-width:84%;
  max-height:84%;
  object-fit:contain;
  object-position:center;
  margin:auto;
  border-radius:10px;
}

.dp-info-card__logo span{
  width:86px;
  height:86px;
  border-radius:24px;
  background:#eaf2fb;
  color:#003b7a;
  display:grid;
  place-items:center;
  font-size:34px;
  font-weight:1000;
}

.dp-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:6px 13px;
  border-radius:999px;
  background:rgba(247,178,26,.12);
  border:1px solid rgba(247,178,26,.34);
  color:#f7b21a;
  font-size:12px;
  font-weight:950;
  margin-bottom:12px;
}

.dp-info-card h1{
  margin:0 0 10px;
  color:#ffffff;
  font-size:34px;
  line-height:1.05;
  letter-spacing:-.035em;
}

.dp-info-card > p{
  margin:0 0 20px;
  color:rgba(255,255,255,.70);
  font-size:16px;
  line-height:1.5;
}

.dp-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:18px;
}

.dp-button{
  min-height:48px;
  border-radius:999px;
  border:0;
  background:#ef173b;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:1000;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(239,23,59,.20);
}

.dp-button--ghost{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
}

.dp-note{
  border-radius:18px;
  background:rgba(247,178,26,.08);
  border:1px solid rgba(247,178,26,.20);
  padding:16px;
}

.dp-note strong{
  color:#f7b21a;
}

.dp-note p{
  color:rgba(255,255,255,.70);
  margin:6px 0 0;
  line-height:1.5;
}

@media(max-width:1100px){
  .dp-player-layout{
    grid-template-columns:1fr;
  }

  .dp-stage{
    min-height:300px;
  }
}

@media(max-width:760px){
  .dp-shell{
    width:min(100% - 28px, 1500px);
  }

  .dp-header__inner{
    flex-direction:column;
    padding:12px 0;
  }

  .dp-nav{
    width:100%;
    overflow-x:auto;
    gap:22px;
    justify-content:flex-start;
  }

  .dp-stage{
    min-height:240px;
  }

  .dp-actions{
    grid-template-columns:1fr;
  }

  .dp-info-card h1{
    font-size:28px;
  }
}

/* ==================================================
   TV ACCESS FRONTEND FLOW
   ================================================== */

.tv-access-page{
  margin:0;
  min-height:100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(36,115,236,.24), transparent 34%),
    radial-gradient(circle at 85% 28%, rgba(239,23,59,.10), transparent 35%),
    linear-gradient(180deg,#061839 0%,#020b1b 72%,#010713 100%);
  color:#ffffff;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.tv-access-header{
  min-height:78px;
  padding:0 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:rgba(2,11,27,.96);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.tv-access-header img{
  height:62px;
  width:auto;
  border-radius:8px;
}

.tv-access-header nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.tv-access-header nav a{
  color:#ffffff;
  text-decoration:none;
  font-weight:900;
}

.tv-access-header nav a:hover{
  color:#f7b21a;
}

.tv-access-shell{
  width:min(100% - 48px, 1180px);
  margin:0 auto;
  padding:42px 0 52px;
}

.tv-access-shell--center{
  min-height:calc(100vh - 78px);
  display:grid;
  place-items:center;
}

.tv-access-hero{
  text-align:center;
  max-width:880px;
  margin:0 auto 28px;
}

.tv-access-hero span,
.code-card > span,
.tv-screen-card > span{
  display:inline-flex;
  min-height:34px;
  align-items:center;
  justify-content:center;
  padding:7px 15px;
  border-radius:999px;
  background:rgba(247,178,26,.12);
  border:1px solid rgba(247,178,26,.35);
  color:#f7b21a;
  font-size:13px;
  font-weight:950;
  margin-bottom:12px;
}

.tv-access-hero h1,
.code-card h1,
.tv-screen-card h1{
  margin:0;
  color:#ffffff;
  font-size:clamp(42px,5vw,72px);
  line-height:.96;
  letter-spacing:-.055em;
}

.tv-access-hero p,
.tv-screen-card p{
  margin:14px auto 0;
  max-width:760px;
  color:rgba(255,255,255,.74);
  font-size:18px;
  line-height:1.55;
}

.tv-access-card,
.checkout-summary,
.checkout-form,
.code-card,
.tv-screen-card,
.tv-access-result{
  background:rgba(8,25,58,.84);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 24px 60px rgba(0,0,0,.30);
  border-radius:26px;
  padding:28px;
}

.tv-access-card h2,
.checkout-form h2{
  margin:0 0 18px;
  color:#ffffff;
  font-size:28px;
  line-height:1;
}

.tv-access-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:28px;
}

.tv-access-form-grid .is-full{
  grid-column:1 / -1;
}

.tv-access-page label{
  display:grid;
  gap:8px;
  color:#ffffff;
  font-weight:900;
}

.tv-access-page input{
  width:100%;
  min-height:54px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(2,11,27,.82);
  color:#ffffff;
  padding:0 16px;
  font:inherit;
  outline:none;
}

.tv-access-page input::placeholder{
  color:rgba(255,255,255,.42);
}

.tv-plans{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-bottom:22px;
}

.tv-plan-card{
  position:relative;
  min-height:160px;
  border-radius:20px;
  padding:20px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(2,11,27,.42);
  cursor:pointer;
}

.tv-plan-card input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.tv-plan-card.is-selected{
  border-color:#f7b21a;
  box-shadow:0 0 0 2px rgba(247,178,26,.16);
}

.tv-plan-card__name{
  display:block;
  color:#ffffff;
  font-weight:1000;
  font-size:20px;
  margin-bottom:8px;
}

.tv-plan-card strong{
  display:block;
  color:#f7b21a;
  font-size:34px;
  line-height:1;
  margin-bottom:12px;
}

.tv-plan-card small{
  color:rgba(255,255,255,.70);
  line-height:1.45;
}

.tv-access-button{
  min-height:54px;
  width:100%;
  border:0;
  border-radius:999px;
  background:#ef173b;
  color:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:1000;
  font-size:16px;
  cursor:pointer;
  box-shadow:0 16px 34px rgba(239,23,59,.24);
}

.tv-access-button--ghost{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:none;
  margin-top:10px;
}

.checkout-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:22px;
  align-items:start;
}

.checkout-summary span{
  color:#f7b21a;
  font-weight:950;
}

.checkout-summary h1{
  margin:10px 0;
  color:#ffffff;
  font-size:42px;
  line-height:1;
}

.checkout-summary > strong{
  display:block;
  color:#f7b21a;
  font-size:50px;
  margin-bottom:10px;
}

.checkout-summary p{
  color:rgba(255,255,255,.72);
}

.checkout-lines{
  display:grid;
  gap:10px;
  margin-top:20px;
}

.checkout-lines div{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  color:#ffffff;
}

.checkout-lines b{
  color:rgba(255,255,255,.68);
}

.checkout-lines span{
  color:#ffffff;
  font-weight:900;
  text-align:right;
}

.checkout-form{
  display:grid;
  gap:16px;
}

.tv-access-two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.code-card{
  width:min(100%, 720px);
  text-align:center;
}

.code-card h1{
  color:#f7b21a;
  font-size:clamp(72px,12vw,138px);
  letter-spacing:.06em;
  margin:8px 0 10px;
}

.code-card p{
  color:rgba(255,255,255,.76);
  font-size:18px;
  margin:0;
}

.tv-screen{
  min-height:100vh;
  width:min(100% - 60px, 980px);
  margin:0 auto;
  display:grid;
  place-items:center;
  gap:24px;
  padding:48px 0;
  text-align:center;
}

.tv-screen > img{
  width:min(460px, 82vw);
  border-radius:16px;
  filter:drop-shadow(0 0 28px rgba(64,144,255,.35));
}

.tv-screen-card{
  width:min(100%, 720px);
}

.tv-screen-card input{
  text-align:center;
  font-size:52px;
  letter-spacing:.15em;
  font-weight:1000;
  min-height:90px;
  margin:24px 0 16px;
}

.tv-access-result{
  width:min(100%, 720px);
}

.tv-access-result h2{
  margin:0 0 8px;
  font-size:34px;
}

.tv-access-result.is-ok{
  border-color:rgba(16,185,129,.38);
}

.tv-access-result.is-ok h2{
  color:#34d399;
}

.tv-access-result.is-error{
  border-color:rgba(239,23,59,.38);
}

.tv-access-result.is-error h2{
  color:#ef173b;
}

.tv-access-empty{
  text-align:center;
}

.tv-access-empty h1{
  color:#ffffff;
}

.tv-access-empty p{
  color:rgba(255,255,255,.72);
}

.tv-access-footer{
  text-align:center;
  color:rgba(255,255,255,.62);
  padding:20px;
}

@media(max-width:900px){
  .tv-access-header{
    flex-direction:column;
    padding:14px 22px;
  }

  .tv-access-header nav{
    width:100%;
    overflow-x:auto;
    justify-content:flex-start;
  }

  .tv-access-form-grid,
  .tv-plans,
  .checkout-layout,
  .tv-access-two{
    grid-template-columns:1fr;
  }
}

@media(max-width:560px){
  .tv-access-shell{
    width:min(100% - 28px, 1180px);
  }

  .tv-access-card,
  .checkout-summary,
  .checkout-form,
  .code-card,
  .tv-screen-card,
  .tv-access-result{
    padding:22px;
    border-radius:22px;
  }

  .tv-screen-card input{
    font-size:40px;
  }
}

/* ==================================================
   QUITAR DESTACADOS HOME
   ================================================== */

body.dark-home .dark-featured,
.dark-featured{
  display:none !important;
}


/* ==================================================
   SLOGAN HERO MAYUSCULA CON ASTERISCOS
   ================================================== */

.dark-slogan,
.dark-hero__slogan,
.dark-hero p strong{
  text-transform:uppercase !important;
  letter-spacing:.01em !important;
  font-weight:1000 !important;
}


/* ==================================================
   QUITAR SOLO LETRAS GRANDES HERO HOME
   ================================================== */

body.dark-home .dark-hero h1{
  display:none !important;
}

/* Mantener la línea roja y lo demás visible */
body.dark-home .dark-red-line{
  display:block !important;
}

/* IPTV_HERO_IMPACT_V1_START */

/*
  Hero principal:
  logo central impactante + Nueva York + República Dominicana.
*/

body.dark-home .dark-hero{
  position:relative !important;
  isolation:isolate !important;
  overflow:hidden !important;
  min-height:calc(100vh - 74px) !important;
  background:
    radial-gradient(
      ellipse at 50% 12%,
      rgba(33,112,235,.45) 0%,
      rgba(18,64,145,.22) 28%,
      transparent 57%
    ),
    radial-gradient(
      ellipse at 50% 48%,
      rgba(239,23,59,.10),
      transparent 42%
    ),
    linear-gradient(
      180deg,
      #071b41 0%,
      #031128 54%,
      #020b1b 78%,
      #010713 100%
    ) !important;
}

/* Textura y luz ambiental */
body.dark-home .dark-hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  pointer-events:none !important;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.022) 0 1px,
      transparent 1px 120px
    ),
    radial-gradient(
      circle at 50% 11%,
      rgba(87,161,255,.16),
      transparent 30%
    ) !important;
  opacity:1 !important;
}

/* Integra las imágenes laterales con el centro */
body.dark-home .dark-hero::after{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:2 !important;
  pointer-events:none !important;
  background:
    linear-gradient(
      90deg,
      rgba(2,11,27,.03) 0%,
      rgba(2,11,27,.18) 22%,
      rgba(2,11,27,.52) 39%,
      rgba(2,11,27,.52) 61%,
      rgba(2,11,27,.18) 78%,
      rgba(2,11,27,.03) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2,11,27,.02) 0%,
      rgba(2,11,27,.08) 48%,
      rgba(2,11,27,.82) 100%
    ) !important;
}

/* Fondos laterales reales */
body.dark-home .dark-bg{
  display:block !important;
  position:absolute !important;
  top:0 !important;
  bottom:auto !important;
  width:43vw !important;
  min-width:470px !important;
  max-width:760px !important;
  height:680px !important;
  z-index:0 !important;
  pointer-events:none !important;
  background-repeat:no-repeat !important;
  background-size:cover !important;
  opacity:.94 !important;
  filter:
    saturate(1.10)
    contrast(1.07)
    brightness(.92) !important;
}

/* Nueva York */
body.dark-home .dark-bg--left{
  left:0 !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(2,11,27,.00) 0%,
      rgba(2,11,27,.05) 45%,
      rgba(2,11,27,.55) 76%,
      rgba(2,11,27,.98) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2,11,27,.02) 0%,
      rgba(2,11,27,.02) 58%,
      rgba(2,11,27,.92) 100%
    ),
    url("brand/bg-left-ny.png") !important;
  background-position:left top !important;
}

/* República Dominicana */
body.dark-home .dark-bg--right{
  right:0 !important;
  background-image:
    linear-gradient(
      270deg,
      rgba(2,11,27,.00) 0%,
      rgba(2,11,27,.05) 45%,
      rgba(2,11,27,.55) 76%,
      rgba(2,11,27,.98) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2,11,27,.02) 0%,
      rgba(2,11,27,.02) 58%,
      rgba(2,11,27,.92) 100%
    ),
    url("brand/bg-right-rd.png") !important;
  background-position:right top !important;
}

/* Contenido por encima de los fondos */
body.dark-home .dark-hero > .dark-shell{
  position:relative !important;
  z-index:5 !important;
}

body.dark-home .dark-hero__center{
  position:relative !important;
  z-index:6 !important;
  max-width:1080px !important;
  margin:0 auto !important;
  padding:18px 0 12px !important;
  text-align:center !important;
}

/* Luz detrás del logo */
body.dark-home .dark-hero__center::before{
  content:"" !important;
  position:absolute !important;
  z-index:-1 !important;
  left:50% !important;
  top:-42px !important;
  width:min(820px, 96vw) !important;
  height:390px !important;
  transform:translateX(-50%) !important;
  pointer-events:none !important;
  background:
    radial-gradient(
      ellipse at center,
      rgba(39,121,246,.35) 0%,
      rgba(25,78,177,.18) 38%,
      transparent 72%
    ) !important;
  filter:blur(10px) !important;
}

/* Logo principal grande e integrado */
body.dark-home .dark-hero__logo{
  position:relative !important;
  z-index:2 !important;
  display:block !important;
  width:min(650px, 72vw) !important;
  max-width:none !important;
  max-height:315px !important;
  height:auto !important;
  object-fit:contain !important;
  margin:0 auto 5px !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  opacity:1 !important;
  mix-blend-mode:screen !important;
  filter:
    brightness(1.13)
    contrast(1.10)
    saturate(1.12)
    drop-shadow(0 0 18px rgba(52,136,255,.70))
    drop-shadow(0 0 46px rgba(20,83,194,.46)) !important;
}

/* Línea y textos debajo del logo */
body.dark-home .dark-red-line{
  position:relative !important;
  z-index:6 !important;
  width:min(900px, 82vw) !important;
  height:3px !important;
  margin:7px auto 10px !important;
  background:#ef173b !important;
  box-shadow:
    0 0 12px rgba(239,23,59,.85),
    0 0 26px rgba(239,23,59,.38) !important;
}

body.dark-home .dark-slogan,
body.dark-home .dark-places,
body.dark-home .dark-badge{
  position:relative !important;
  z-index:6 !important;
}

/* Tarjetas encima del cierre degradado */
body.dark-home .dark-category-grid{
  position:relative !important;
  z-index:7 !important;
  margin-top:22px !important;
}

/* Tablets */
@media (max-width:1100px){
  body.dark-home .dark-bg{
    width:49vw !important;
    min-width:400px !important;
    height:620px !important;
    opacity:.68 !important;
  }

  body.dark-home .dark-hero__logo{
    width:min(590px, 80vw) !important;
  }
}

/* Celulares */
@media (max-width:760px){
  body.dark-home .dark-hero__center{
    padding-top:10px !important;
  }

  body.dark-home .dark-bg{
    width:72vw !important;
    min-width:0 !important;
    max-width:none !important;
    height:500px !important;
    opacity:.27 !important;
    background-size:cover !important;
  }

  body.dark-home .dark-bg--left{
    left:-42vw !important;
  }

  body.dark-home .dark-bg--right{
    right:-42vw !important;
  }

  body.dark-home .dark-hero__logo{
    width:94vw !important;
    max-height:260px !important;
    filter:
      brightness(1.12)
      contrast(1.08)
      saturate(1.10)
      drop-shadow(0 0 17px rgba(52,136,255,.62))
      drop-shadow(0 0 34px rgba(20,83,194,.38)) !important;
  }

  body.dark-home .dark-hero__center::before{
    top:-25px !important;
    height:310px !important;
  }
}

@media (max-width:520px){
  body.dark-home .dark-bg{
    height:440px !important;
    opacity:.22 !important;
  }

  body.dark-home .dark-hero__logo{
    width:96vw !important;
    max-height:230px !important;
  }

  body.dark-home .dark-red-line{
    width:88vw !important;
  }
}

/* IPTV_HERO_IMPACT_V1_END */

/* IPTV_REMOVE_CENTRAL_LOGO_START */

/* Quitar solamente el logo grande del centro del inicio */
body.dark-home .dark-hero__logo{
  display:none !important;
}

/* Quitar el resplandor que estaba detrás de ese logo */
body.dark-home .dark-hero__center::before{
  display:none !important;
}

/* Ajustar el espacio superior después de retirar el logo */
body.dark-home .dark-hero__center{
  padding-top:34px !important;
}

/* IPTV_REMOVE_CENTRAL_LOGO_END */

/* IPTV_ADD_TRANSPARENT_LOGO_START */

/* Volver a mostrar el logo central transparente */
body.dark-home .dark-hero__logo{
  display:block !important;
  width:min(640px, 76vw) !important;
  height:auto !important;
  max-height:310px !important;
  object-fit:contain !important;
  margin:0 auto 8px !important;
  padding:0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  mix-blend-mode:normal !important;
  filter:
    drop-shadow(0 0 18px rgba(52,136,255,.68))
    drop-shadow(0 0 44px rgba(20,83,194,.42)) !important;
}

/* Volver a mostrar el brillo detrás del logo */
body.dark-home .dark-hero__center::before{
  display:block !important;
}

/* Centrado visual del bloque */
body.dark-home .dark-hero__center{
  padding-top:18px !important;
  text-align:center !important;
}

@media (max-width:760px){
  body.dark-home .dark-hero__logo{
    width:94vw !important;
    max-height:250px !important;
  }
}

/* IPTV_ADD_TRANSPARENT_LOGO_END */

/* IPTV_INNER_LOGO_REFRESH_START */

/* Logo del header en páginas internas */
body.dark-inner-page .brand img,
body.dark-inner-page .simple-brand img,
body.dark-inner-page header img,
.dl-logo img,
.dp-logo img{
  max-height:74px !important;
  width:auto !important;
  max-width:230px !important;
  object-fit:contain !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}

/* Logo del hero central de páginas internas */
.dl-hero__logo,
.dp-loading img,
.dp-unavailable img,
body.dark-inner-page .page-hero img,
body.dark-inner-page .listing-hero img,
body.dark-inner-page .hero img{
  width:min(420px, 82vw) !important;
  max-height:190px !important;
  height:auto !important;
  object-fit:contain !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  filter:
    drop-shadow(0 0 18px rgba(52,136,255,.35))
    drop-shadow(0 0 36px rgba(20,83,194,.22)) !important;
}

/* Evitar que se vean pequeños */
@media (max-width:760px){
  body.dark-inner-page .brand img,
  body.dark-inner-page .simple-brand img,
  body.dark-inner-page header img,
  .dl-logo img,
  .dp-logo img{
    max-height:64px !important;
    max-width:190px !important;
  }

  .dl-hero__logo,
  .dp-loading img,
  .dp-unavailable img,
  body.dark-inner-page .page-hero img,
  body.dark-inner-page .listing-hero img,
  body.dark-inner-page .hero img{
    width:min(320px, 86vw) !important;
    max-height:150px !important;
  }
}

/* IPTV_INNER_LOGO_REFRESH_END */

/* IPTV_TRANSPARENT_LOGO_GLOBAL_FIX_START */

/* Logo general sin fondo ni caja */
.dark-logo img,
.dl-logo img,
.dp-logo img,
.tv-access-header img,
body.dark-inner-page header img,
body.dark-home .dark-hero__logo,
.dl-hero__logo{
  object-fit:contain !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
}

/* Header */
.dark-logo img,
.dl-logo img,
.dp-logo img,
.tv-access-header img,
body.dark-inner-page header img{
  height:72px !important;
  max-height:72px !important;
  width:auto !important;
  max-width:250px !important;
}

/* Logo central del inicio */
body.dark-home .dark-hero__logo{
  display:block !important;
  width:min(660px, 76vw) !important;
  max-height:320px !important;
  height:auto !important;
  margin:0 auto 8px !important;
  filter:
    drop-shadow(0 0 18px rgba(52,136,255,.68))
    drop-shadow(0 0 44px rgba(20,83,194,.42)) !important;
}

/* Logo central de TV / Medios / Radio */
.dl-hero__logo{
  display:block !important;
  width:min(430px, 78vw) !important;
  max-height:190px !important;
  height:auto !important;
  margin:0 auto 18px !important;
  filter:
    drop-shadow(0 0 16px rgba(52,136,255,.40))
    drop-shadow(0 0 34px rgba(20,83,194,.24)) !important;
}

@media (max-width:760px){
  .dark-logo img,
  .dl-logo img,
  .dp-logo img,
  .tv-access-header img,
  body.dark-inner-page header img{
    height:60px !important;
    max-height:60px !important;
    max-width:200px !important;
  }

  body.dark-home .dark-hero__logo{
    width:94vw !important;
    max-height:250px !important;
  }

  .dl-hero__logo{
    width:min(320px, 86vw) !important;
    max-height:150px !important;
  }
}

/* IPTV_TRANSPARENT_LOGO_GLOBAL_FIX_END */

/* LOGO_FIX_SIMPLE_START */
.dark-logo img,
.dl-logo img,
.dp-logo img,
.tv-access-header img,
body.dark-inner-page header img{
  display:block !important;
  height:72px !important;
  max-height:72px !important;
  width:auto !important;
  max-width:250px !important;
  object-fit:contain !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
}

body.dark-home .dark-hero__logo,
.dl-hero__logo{
  display:block !important;
  width:min(660px, 76vw) !important;
  max-height:320px !important;
  height:auto !important;
  margin:0 auto 8px !important;
  object-fit:contain !important;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  filter:drop-shadow(0 0 22px rgba(52,136,255,.55)) !important;
}
/* LOGO_FIX_SIMPLE_END */

/* DARK_SHORT_QUOTE_START */
body.dark-home .dark-short-quote{
  margin: 10px auto 10px !important;
  text-align: center !important;
  font-size: clamp(22px, 2.4vw, 38px) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  letter-spacing: .6px !important;
  text-transform: uppercase !important;
  color: #f4b400 !important;
  text-shadow:
    0 0 10px rgba(244,180,0,.14),
    0 0 20px rgba(244,180,0,.06) !important;
  max-width: 92% !important;
}

body.dark-home .dark-red-line{
  margin: 8px auto 16px !important;
}

@media (max-width: 768px){
  body.dark-home .dark-short-quote{
    margin: 8px auto 8px !important;
    font-size: clamp(18px, 5vw, 26px) !important;
    max-width: 94% !important;
  }

  body.dark-home .dark-red-line{
    margin: 8px auto 14px !important;
  }
}
/* DARK_SHORT_QUOTE_END */

/* COMMERCIAL_PRICES_MARKET_SELECTOR_START */
.tv-market-selector{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin:0 0 28px;
}

.tv-market-card{
  position:relative;
  min-height:118px;
  border-radius:20px;
  padding:20px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(2,11,27,.42);
  cursor:pointer;
  color:#ffffff;
}

.tv-market-card input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.tv-market-card.is-selected{
  border-color:#f7b21a;
  box-shadow:0 0 0 2px rgba(247,178,26,.16);
}

.tv-market-card span{
  display:block;
  color:#ffffff;
  font-weight:1000;
  font-size:22px;
  margin-bottom:8px;
}

.tv-market-card small{
  color:rgba(255,255,255,.70);
  line-height:1.45;
}

@media(max-width:900px){
  .tv-market-selector{
    grid-template-columns:1fr;
  }
}
/* COMMERCIAL_PRICES_MARKET_SELECTOR_END */

/* AUTO_MARKET_NOTICE_START */
.tv-market-selector,
#marketSelector{
  display:none !important;
}

.tv-market-notice{
  margin:0 0 26px;
  padding:18px 20px;
  border-radius:20px;
  background:rgba(247,178,26,.09);
  border:1px solid rgba(247,178,26,.30);
  color:#ffffff;
}

.tv-market-notice span{
  display:block;
  color:#f7b21a;
  font-weight:950;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:6px;
}

.tv-market-notice strong{
  display:block;
  font-size:24px;
  line-height:1.1;
  font-weight:1000;
  color:#ffffff;
  margin-bottom:6px;
}

.tv-market-notice p{
  margin:0;
  color:rgba(255,255,255,.72);
}
/* AUTO_MARKET_NOTICE_END */

/* INDEX_SUBSCRIPTION_BUTTON_START */
body.dark-home .dark-subscription-cta{
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  margin:22px auto 32px !important;
  position:relative !important;
  z-index:5 !important;
}

body.dark-home .dark-subscription-button{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:58px !important;
  padding:0 34px !important;
  border-radius:999px !important;
  background:linear-gradient(135deg,#f7b21a,#ffd76b) !important;
  color:#061327 !important;
  font-size:clamp(15px,1.45vw,19px) !important;
  font-weight:1000 !important;
  line-height:1 !important;
  text-decoration:none !important;
  text-transform:uppercase !important;
  letter-spacing:.06em !important;
  border:1px solid rgba(255,255,255,.30) !important;
  box-shadow:
    0 18px 38px rgba(247,178,26,.25),
    0 0 0 1px rgba(247,178,26,.18),
    inset 0 1px 0 rgba(255,255,255,.40) !important;
  transition:transform .18s ease, box-shadow .18s ease !important;
}

body.dark-home .dark-subscription-button:hover{
  transform:translateY(-2px) !important;
  box-shadow:
    0 22px 46px rgba(247,178,26,.34),
    0 0 0 1px rgba(247,178,26,.22),
    inset 0 1px 0 rgba(255,255,255,.45) !important;
}

body.dark-home .dark-subscription-button::after{
  content:"→";
  margin-left:12px;
  font-size:22px;
  line-height:1;
}

@media(max-width:768px){
  body.dark-home .dark-subscription-cta{
    margin:18px auto 26px !important;
    padding:0 18px !important;
  }

  body.dark-home .dark-subscription-button{
    width:100% !important;
    max-width:340px !important;
    min-height:54px !important;
    padding:0 22px !important;
    font-size:14px !important;
  }
}
/* INDEX_SUBSCRIPTION_BUTTON_END */

/* IPTV_TV_CARD_BLUE_START */

/* Primera tarjeta del home: TV */
body.dark-home .dark-feature-card:first-of-type .dark-feature-card__title,
body.dark-home .dark-feature-card:first-of-type h3,
body.dark-home .dark-feature-card:first-of-type .feature-card__title{
  color:#35b8ff !important;
}

body.dark-home .dark-feature-card:first-of-type .dark-feature-card__text,
body.dark-home .dark-feature-card:first-of-type p,
body.dark-home .dark-feature-card:first-of-type .feature-card__text{
  color:#7fd8ff !important;
}

body.dark-home .dark-feature-card:first-of-type .dark-feature-card__action,
body.dark-home .dark-feature-card:first-of-type .feature-card__action,
body.dark-home .dark-feature-card:first-of-type .card-action,
body.dark-home .dark-feature-card:first-of-type .arrow-circle{
  border-color:#35b8ff !important;
  color:#35b8ff !important;
  box-shadow:
    0 0 0 1px rgba(53,184,255,.16),
    0 0 18px rgba(53,184,255,.12) !important;
}

body.dark-home .dark-feature-card:first-of-type .dark-feature-card__action svg,
body.dark-home .dark-feature-card:first-of-type .feature-card__action svg,
body.dark-home .dark-feature-card:first-of-type .card-action svg{
  stroke:#35b8ff !important;
  fill:#35b8ff !important;
}

body.dark-home .dark-feature-card:first-of-type{
  border-color:rgba(53,184,255,.65) !important;
  box-shadow:0 0 22px rgba(53,184,255,.08) !important;
}

/* IPTV_TV_CARD_BLUE_END */

/* IPTV_TV_ARROW_BLUE_FIX_START */

/* Primera tarjeta del home = TV */
body.dark-home .dark-feature-card:first-of-type [class*="action"],
body.dark-home .dark-feature-card:first-of-type [class*="arrow"],
body.dark-home .dark-feature-card:first-of-type a:last-child,
body.dark-home .dark-feature-card:first-of-type .dark-feature-card__action{
  border:2px solid #35b8ff !important;
  color:#35b8ff !important;
  background:transparent !important;
  box-shadow:
    0 0 0 1px rgba(53,184,255,.20),
    0 0 18px rgba(53,184,255,.18) !important;
}

/* Flecha interna */
body.dark-home .dark-feature-card:first-of-type [class*="action"] *,
body.dark-home .dark-feature-card:first-of-type [class*="arrow"] *,
body.dark-home .dark-feature-card:first-of-type a:last-child *,
body.dark-home .dark-feature-card:first-of-type .dark-feature-card__action *{
  color:#35b8ff !important;
  stroke:#35b8ff !important;
  fill:#35b8ff !important;
}

/* Hover */
body.dark-home .dark-feature-card:first-of-type [class*="action"]:hover,
body.dark-home .dark-feature-card:first-of-type [class*="arrow"]:hover,
body.dark-home .dark-feature-card:first-of-type a:last-child:hover,
body.dark-home .dark-feature-card:first-of-type .dark-feature-card__action:hover{
  border-color:#59c6ff !important;
  color:#59c6ff !important;
  box-shadow:
    0 0 0 1px rgba(89,198,255,.28),
    0 0 24px rgba(89,198,255,.24) !important;
}

/* IPTV_TV_ARROW_BLUE_FIX_END */

/* IPTV_TV_CIRCLE_BLUE_FINAL_START */

/* Tarjeta TV del home: texto azul */
body.dark-home main a[href="tv.html"] h2,
body.dark-home main a[href="tv.html"] h3,
body.dark-home main a[href="tv.html"] strong{
  color:#35b8ff !important;
}

body.dark-home main a[href="tv.html"] p,
body.dark-home main a[href="tv.html"] small{
  color:#8addff !important;
}

/* Círculo real de la flecha: normalmente es el último elemento dentro del enlace */
body.dark-home main a[href="tv.html"] > :last-child,
body.dark-home main a[href="tv.html"] span:last-child,
body.dark-home main a[href="tv.html"] div:last-child,
body.dark-home main a[href="tv.html"] i:last-child,
body.dark-home main a[href="tv.html"] button:last-child{
  border-color:#35b8ff !important;
  color:#ffffff !important;
  background:rgba(53,184,255,.08) !important;
  box-shadow:
    0 0 0 1px rgba(53,184,255,.22),
    0 0 20px rgba(53,184,255,.26) !important;
}

/* Si el círculo está hecho con ::before o ::after */
body.dark-home main a[href="tv.html"] > :last-child::before,
body.dark-home main a[href="tv.html"] > :last-child::after,
body.dark-home main a[href="tv.html"] span:last-child::before,
body.dark-home main a[href="tv.html"] span:last-child::after,
body.dark-home main a[href="tv.html"] div:last-child::before,
body.dark-home main a[href="tv.html"] div:last-child::after,
body.dark-home main a[href="tv.html"]::before,
body.dark-home main a[href="tv.html"]::after{
  border-color:#35b8ff !important;
  color:#ffffff !important;
  box-shadow:
    0 0 0 1px rgba(53,184,255,.22),
    0 0 20px rgba(53,184,255,.26) !important;
}

/* Flecha interna */
body.dark-home main a[href="tv.html"] > :last-child *,
body.dark-home main a[href="tv.html"] span:last-child *,
body.dark-home main a[href="tv.html"] div:last-child *,
body.dark-home main a[href="tv.html"] svg,
body.dark-home main a[href="tv.html"] path{
  color:#ffffff !important;
  stroke:#ffffff !important;
  fill:#ffffff !important;
}

/* Borde general de la tarjeta TV */
body.dark-home main a[href="tv.html"]{
  border-color:#35b8ff !important;
  box-shadow:0 0 22px rgba(53,184,255,.08) !important;
}

/* IPTV_TV_CIRCLE_BLUE_FINAL_END */

/* IPTV_ACTIVAR_TV_TITLE_YELLOW_START */
body.dark-inner-page .tv-access-hero h1,
body.dark-inner-page .tv-access-shell h1,
body.dark-inner-page main h1{
  color:#f7b21a !important;
  text-shadow:
    0 0 10px rgba(247,178,26,.14),
    0 0 22px rgba(247,178,26,.10) !important;
}
/* IPTV_ACTIVAR_TV_TITLE_YELLOW_END */

/* ACTIVAR_TITLE_YELLOW_FINAL_START */
html body .tv-activation-title-yellow,
html body main .tv-activation-title-yellow,
html body h1.tv-activation-title-yellow{
  color:#f7b21a !important;
  -webkit-text-fill-color:#f7b21a !important;
  background:none !important;
  background-image:none !important;
  text-shadow:
    0 0 12px rgba(247,178,26,.22),
    0 0 28px rgba(247,178,26,.14) !important;
}
/* ACTIVAR_TITLE_YELLOW_FINAL_END */

/* IPTV_TV_CARD_TEXT_ICON_FIX_START */

/* Tarjeta TV: título azul */
body.dark-home main a[href="tv.html"] h2,
body.dark-home main a[href="tv.html"] h3,
body.dark-home main a[href="tv.html"] strong{
  color:#35b8ff !important;
  -webkit-text-fill-color:#35b8ff !important;
}

/* Tarjeta TV: texto inferior en blanco */
body.dark-home main a[href="tv.html"] p,
body.dark-home main a[href="tv.html"] small{
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
}

/* Icono principal de TV en azul */
body.dark-home main a[href="tv.html"] > :first-child,
body.dark-home main a[href="tv.html"] > :first-child *,
body.dark-home main a[href="tv.html"] [class*="icon"]:not(:last-child),
body.dark-home main a[href="tv.html"] [class*="icon"]:not(:last-child) *,
body.dark-home main a[href="tv.html"] [class*="screen"]:not(:last-child),
body.dark-home main a[href="tv.html"] [class*="screen"]:not(:last-child) *{
  color:#35b8ff !important;
  border-color:#35b8ff !important;
  stroke:#35b8ff !important;
  fill:#35b8ff !important;
  -webkit-text-fill-color:#35b8ff !important;
}

/* Si el icono está hecho con SVG */
body.dark-home main a[href="tv.html"] > :first-child svg,
body.dark-home main a[href="tv.html"] > :first-child svg *,
body.dark-home main a[href="tv.html"] [class*="icon"] svg,
body.dark-home main a[href="tv.html"] [class*="icon"] svg *,
body.dark-home main a[href="tv.html"] svg:first-of-type,
body.dark-home main a[href="tv.html"] svg:first-of-type *{
  color:#35b8ff !important;
  stroke:#35b8ff !important;
  fill:none !important;
}

/* Si el icono usa pseudo-elementos */
body.dark-home main a[href="tv.html"] > :first-child::before,
body.dark-home main a[href="tv.html"] > :first-child::after,
body.dark-home main a[href="tv.html"] [class*="icon"]::before,
body.dark-home main a[href="tv.html"] [class*="icon"]::after{
  color:#35b8ff !important;
  border-color:#35b8ff !important;
  background:#35b8ff !important;
  box-shadow:0 0 18px rgba(53,184,255,.20) !important;
}

/* IPTV_TV_CARD_TEXT_ICON_FIX_END */

/* MEDIOS_TITLE_RED_START */

/* Tarjeta Medios digitales: título rojo */
body.dark-home main a[href="medios.html"] h2,
body.dark-home main a[href="medios.html"] h3,
body.dark-home main a[href="medios.html"] strong{
  color:#ff3f68 !important;
  -webkit-text-fill-color:#ff3f68 !important;
}

/* Texto inferior de Medios digitales en blanco */
body.dark-home main a[href="medios.html"] p,
body.dark-home main a[href="medios.html"] small{
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
}

/* Mantener borde, icono y círculo en rojo */
body.dark-home main a[href="medios.html"]{
  border-color:#ff3f68 !important;
}

body.dark-home main a[href="medios.html"] > :first-child,
body.dark-home main a[href="medios.html"] > :first-child *,
body.dark-home main a[href="medios.html"] [class*="icon"],
body.dark-home main a[href="medios.html"] [class*="icon"] *,
body.dark-home main a[href="medios.html"] > :last-child,
body.dark-home main a[href="medios.html"] > :last-child *,
body.dark-home main a[href="medios.html"] svg,
body.dark-home main a[href="medios.html"] svg *{
  color:#ff3f68 !important;
  border-color:#ff3f68 !important;
  stroke:#ff3f68 !important;
}

/* MEDIOS_TITLE_RED_END */

/* DIGITALES_YOUTUBE_VIDEOS_START */
.digital-youtube-section{
  width:min(1180px, calc(100% - 34px));
  margin:48px auto 70px;
  position:relative;
  z-index:2;
}

.digital-youtube-head{
  text-align:center;
  margin:0 auto 26px;
  max-width:780px;
}

.digital-youtube-head span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 16px;
  border-radius:999px;
  color:#ff3f68;
  border:1px solid rgba(255,63,104,.45);
  background:rgba(255,63,104,.08);
  font-weight:950;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:14px;
}

.digital-youtube-head h2{
  margin:0 0 10px;
  color:#ff3f68;
  font-size:clamp(30px, 4vw, 58px);
  line-height:1;
  font-weight:1000;
}

.digital-youtube-head p{
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:clamp(15px, 1.5vw, 18px);
  line-height:1.55;
}

.digital-youtube-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.digital-youtube-card{
  border:1px solid rgba(255,63,104,.50);
  background:rgba(2,11,27,.82);
  border-radius:22px;
  padding:12px;
  box-shadow:0 20px 50px rgba(0,0,0,.24);
  overflow:hidden;
}

.digital-youtube-frame{
  position:relative;
  width:100%;
  aspect-ratio:16 / 9;
  border-radius:16px;
  overflow:hidden;
  background:#020712;
}

.digital-youtube-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

@media(max-width:800px){
  .digital-youtube-section{
    width:min(100% - 26px, 520px);
    margin:34px auto 54px;
  }

  .digital-youtube-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
}
/* DIGITALES_YOUTUBE_VIDEOS_END */









/* RADIO_BLUETOOTH_STYLE_FINAL_START */
.radio-bluetooth-strip {
  padding: 0 0 18px;
  margin-top: -8px;
}

.radio-bluetooth-strip__inner {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(77, 166, 255, .30);
  background:
    radial-gradient(circle at 8% 50%, rgba(0, 132, 255, .20), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
  color: #fff;
}

.radio-bluetooth-strip__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #58aaff;
  background: rgba(88, 170, 255, .12);
  border: 1px solid rgba(88, 170, 255, .28);
}

.radio-bluetooth-strip__icon svg {
  width: 25px;
  height: 25px;
}

.radio-bluetooth-strip strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
}

.radio-bluetooth-strip p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.45;
}

.dp-bluetooth-tools {
  margin-top: 16px;
  display: grid;
  gap: 9px;
  justify-items: center;
}

.dp-bluetooth-btn {
  appearance: none;
  border: 1px solid rgba(88, 170, 255, .42);
  background: linear-gradient(135deg, rgba(88, 170, 255, .24), rgba(255,255,255,.08));
  color: #ffffff;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 14px 28px rgba(0,0,0,.20);
}

.dp-bluetooth-btn svg {
  width: 21px;
  height: 21px;
  color: #58aaff;
}

.dp-bluetooth-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(88, 170, 255, .72);
}

.dp-bluetooth-btn.is-connected {
  border-color: rgba(46, 213, 115, .65);
  background: linear-gradient(135deg, rgba(46, 213, 115, .24), rgba(255,255,255,.08));
}

.dp-bluetooth-btn.is-connected svg {
  color: #2ed573;
}

.dp-bluetooth-btn:disabled {
  opacity: .72;
  cursor: progress;
}

.dp-bluetooth-tools p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 640px) {
  .radio-bluetooth-strip__inner {
    align-items: flex-start;
  }

  .dp-bluetooth-btn {
    width: 100%;
    max-width: 260px;
  }
}
/* RADIO_BLUETOOTH_STYLE_FINAL_END */

/* bt icon premium final */
.radio-bluetooth-strip [aria-hidden="true"] {
  width: 58px !important;
  height: 58px !important;
  flex: 0 0 58px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 20px !important;
  color: #ffffff !important;
  background:
    linear-gradient(145deg, #56b8ff 0%, #237cff 45%, #1254df 100%) !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,.32),
    inset 0 -8px 18px rgba(0,38,145,.28),
    0 14px 28px rgba(0,75,255,.30),
    0 8px 18px rgba(0,0,0,.24) !important;
}

.radio-bluetooth-strip [aria-hidden="true"] svg {
  width: 34px !important;
  height: 34px !important;
  color: #ffffff !important;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.22));
}

.dp-bluetooth-btn {
  min-height: 58px !important;
  padding: 7px 20px 7px 8px !important;
  gap: 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(72, 152, 255, .42) !important;
  background:
    linear-gradient(135deg, rgba(10, 28, 66, .92), rgba(7, 17, 42, .92)) !important;
  box-shadow:
    0 16px 34px rgba(0,0,0,.28),
    inset 0 0 0 1px rgba(255,255,255,.05) !important;
}

.dp-bluetooth-btn svg {
  width: 48px !important;
  height: 48px !important;
  padding: 9px !important;
  flex: 0 0 48px !important;
  border-radius: 17px !important;
  color: #ffffff !important;
  background:
    linear-gradient(145deg, #56b8ff 0%, #237cff 45%, #1254df 100%) !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,.32),
    inset 0 -8px 18px rgba(0,38,145,.28),
    0 10px 22px rgba(0,75,255,.34) !important;
  filter: drop-shadow(0 4px 7px rgba(0,0,0,.22));
}

.dp-bluetooth-btn span {
  color: #ffffff !important;
  font-weight: 950 !important;
  font-size: 14px !important;
  letter-spacing: .01em !important;
}

.dp-bluetooth-btn:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(86, 184, 255, .74) !important;
}

.dp-bluetooth-btn:hover svg {
  box-shadow:
    inset 0 2px 8px rgba(255,255,255,.38),
    inset 0 -8px 18px rgba(0,38,145,.28),
    0 14px 28px rgba(0,75,255,.45) !important;
}

.dp-bluetooth-btn.is-connected svg {
  background:
    linear-gradient(145deg, #4dffb2 0%, #18b96d 50%, #07944e 100%) !important;
}

@media (max-width: 640px) {
  .radio-bluetooth-strip [aria-hidden="true"] {
    width: 52px !important;
    height: 52px !important;
    flex-basis: 52px !important;
    border-radius: 18px !important;
  }

  .radio-bluetooth-strip [aria-hidden="true"] svg {
    width: 30px !important;
    height: 30px !important;
  }

  .dp-bluetooth-btn {
    min-height: 56px !important;
    width: fit-content !important;
    max-width: 100% !important;
  }

  .dp-bluetooth-btn svg {
    width: 46px !important;
    height: 46px !important;
  }
}
/* bt icon premium final end */

/* AUDIO-VISUALIZER-STYLE-START */
.dp-audio-player .audio-visualizer-card {
  position: relative;
  width: min(430px, 86vw);
  min-height: 230px;
  margin: 0 auto 26px;
  padding: 24px 24px 22px;
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 18px;
  isolation: isolate;
  border: 1px solid rgba(89, 169, 255, .30);
  background:
    radial-gradient(circle at 50% 12%, rgba(44, 131, 255, .34), transparent 35%),
    radial-gradient(circle at 15% 85%, rgba(255, 24, 72, .18), transparent 30%),
    linear-gradient(145deg, rgba(10, 31, 72, .92), rgba(4, 14, 35, .96));
  box-shadow:
    0 26px 70px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 0 0 1px rgba(255,255,255,.045);
}

.dp-audio-player .audio-visualizer-glow {
  position: absolute;
  inset: -35%;
  z-index: -1;
  background:
    conic-gradient(from 90deg, rgba(35,124,255,.0), rgba(35,124,255,.38), rgba(255,20,69,.28), rgba(255,196,45,.24), rgba(35,124,255,.0));
  filter: blur(30px);
  opacity: .62;
  animation: audio-glow-spin 8s linear infinite;
}

.dp-audio-player .audio-visualizer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.dp-audio-player .audio-visualizer-top span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  color: #7ec4ff;
  background: rgba(126, 196, 255, .10);
  border: 1px solid rgba(126, 196, 255, .24);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.dp-audio-player .audio-visualizer-top strong {
  color: #ffc42d;
  font-size: 13px;
  font-weight: 950;
}

.dp-audio-player .audio-bars {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.dp-audio-player .audio-bars span {
  width: 7px;
  height: 100%;
  min-height: 22px;
  border-radius: 999px;
  transform-origin: center bottom;
  transform: scaleY(.26);
  background:
    linear-gradient(180deg, #ffffff 0%, #78c8ff 34%, #237cff 72%, #174bc5 100%);
  box-shadow:
    0 0 16px rgba(35, 124, 255, .55),
    inset 0 1px 0 rgba(255,255,255,.50);
  animation: audio-wave 1.05s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.045s);
}

.dp-audio-player .audio-visualizer-card.is-real .audio-bars span {
  animation: none;
}

.dp-audio-player .audio-visualizer-card.is-paused .audio-bars span {
  animation-play-state: paused;
  opacity: .55;
  transform: scaleY(.22);
}

.dp-audio-player .audio-visualizer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.dp-audio-player .audio-visualizer-bottom span {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126,196,255,.65), transparent);
}

.dp-audio-player .audio-visualizer-bottom small {
  color: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

@keyframes audio-wave {
  0%, 100% {
    transform: scaleY(.22);
  }

  25% {
    transform: scaleY(.86);
  }

  50% {
    transform: scaleY(.38);
  }

  75% {
    transform: scaleY(.68);
  }
}

@keyframes audio-glow-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .dp-audio-player .audio-visualizer-card {
    width: min(340px, 88vw);
    min-height: 205px;
    border-radius: 28px;
    padding: 20px 18px;
  }

  .dp-audio-player .audio-bars {
    height: 92px;
    gap: 4px;
  }

  .dp-audio-player .audio-bars span {
    width: 5px;
  }

  .dp-audio-player .audio-visualizer-top {
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
}
/* AUDIO-VISUALIZER-STYLE-END */

/* AUDIO-VISUALIZER-SAFE-FIX-START */
.dp-audio-player .audio-visualizer-card .audio-bars span {
  animation: none !important;
  transition: transform .11s linear, opacity .2s ease;
}

.dp-audio-player .audio-visualizer-card.is-playing .audio-bars span {
  opacity: 1;
}

.dp-audio-player .audio-visualizer-card.is-paused .audio-bars span {
  opacity: .48;
}
/* AUDIO-VISUALIZER-SAFE-FIX-END */

/* PLAYER_RADIO_MOBILE_FIX_START */
@media (max-width: 760px) {
  body.dark-player-page {
    overflow-x: hidden;
  }

  .dp-shell {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .dp-player-layout {
    display: block !important;
  }

  .dp-watch-card {
    width: 100% !important;
    min-height: auto !important;
    border-radius: 22px !important;
    overflow: visible !important;
  }

  .dp-watch-card__top {
    padding: 14px 16px !important;
  }

  .dp-stage {
    min-height: auto !important;
    aspect-ratio: auto !important;
    padding: 24px 16px 28px !important;
    overflow: visible !important;
  }

  .dp-audio-player {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .dp-audio-player .audio-visualizer-card {
    width: 100% !important;
    max-width: 320px !important;
    min-height: 150px !important;
    margin: 0 auto 18px !important;
    border-radius: 22px !important;
    padding: 15px 14px !important;
    gap: 10px !important;
  }

  .dp-audio-player .audio-visualizer-top {
    display: none !important;
  }

  .dp-audio-player .audio-bars {
    height: 78px !important;
    gap: 4px !important;
  }

  .dp-audio-player .audio-bars span {
    width: 5px !important;
  }

  .dp-audio-player .audio-visualizer-bottom {
    gap: 8px !important;
  }

  .dp-audio-player .audio-visualizer-bottom small {
    font-size: 10px !important;
  }

  .dp-audio-player h2 {
    font-size: 28px !important;
    line-height: 1.05 !important;
    margin: 12px 0 6px !important;
    text-align: center !important;
  }

  .dp-audio-player > p {
    font-size: 14px !important;
    margin-bottom: 18px !important;
    text-align: center !important;
  }

  #radioAudioPlayer {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .dp-bluetooth-tools {
    margin-top: 16px !important;
  }

  .dp-bluetooth-btn {
    max-width: 270px !important;
    min-height: 54px !important;
  }

  .dp-bluetooth-tools p {
    max-width: 310px !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  .dp-side-card {
    margin-top: 18px !important;
    width: 100% !important;
  }

  .dp-side-card .dp-side-logo,
  .dp-side-card img {
    max-height: 150px !important;
  }
}

@media (max-width: 420px) {
  .dp-stage {
    padding: 20px 14px 26px !important;
  }

  .dp-audio-player .audio-visualizer-card {
    max-width: 300px !important;
    min-height: 136px !important;
  }

  .dp-audio-player .audio-bars {
    height: 68px !important;
    gap: 3px !important;
  }

  .dp-audio-player .audio-bars span {
    width: 4px !important;
  }

  .dp-audio-player h2 {
    font-size: 25px !important;
  }
}
/* PLAYER_RADIO_MOBILE_FIX_END */

/* MEDIOS_INTERNAL_PLAYER_STYLE_START */
.media-platform-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  border-radius: 18px 18px 0 0;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.media-platform-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 23, 68, .18), transparent 26%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.46));
  z-index: 1;
}

.media-platform-thumb__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 13, 35, .18), rgba(255, 23, 68, .10));
  z-index: 2;
}

.media-platform-thumb__play {
  position: relative;
  z-index: 3;
  width: 76px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff1744, #ff3d62);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  padding-left: 4px;
  box-shadow: 0 18px 40px rgba(255, 23, 68, .35);
}

.media-platform-thumb__label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 3;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(3, 12, 31, .70);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 900;
}

.media-platform-thumb:hover .media-platform-thumb__play {
  transform: scale(1.05);
}

.media-internal-modal[hidden] {
  display: none !important;
}

.media-modal-open {
  overflow: hidden;
}

.media-internal-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
}

.media-internal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 5, 18, .82);
  backdrop-filter: blur(10px);
}

.media-internal-modal__box {
  position: relative;
  z-index: 2;
  width: min(980px, 96vw);
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #000;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}

.media-internal-modal__box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.media-internal-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 23, 68, .96);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

@media (max-width: 640px) {
  .media-internal-modal {
    padding: 12px;
  }

  .media-internal-modal__box {
    width: 100%;
    border-radius: 18px;
  }

  .media-platform-thumb__play {
    width: 66px;
    height: 50px;
    font-size: 24px;
  }

  .media-platform-thumb__label {
    left: 12px;
    bottom: 10px;
    font-size: 11px;
  }
}
/* MEDIOS_INTERNAL_PLAYER_STYLE_END */

/* MEDIOS_INLINE_MOBILE_FIX_START */
.media-platform-thumb {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  min-height: 190px !important;
  overflow: hidden !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  cursor: pointer !important;
  border-radius: 18px 18px 0 0 !important;
  background-size: cover !important;
  background-position: center !important;
  isolation: isolate !important;
}

.media-platform-thumb::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 23, 68, .18), transparent 26%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.50)) !important;
  z-index: 1 !important;
}

.media-platform-thumb__shade {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, rgba(4, 13, 35, .18), rgba(255, 23, 68, .10)) !important;
  z-index: 2 !important;
}

.media-platform-thumb__play {
  position: relative !important;
  z-index: 3 !important;
  width: 76px !important;
  height: 56px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #ff1744, #ff3d62) !important;
  color: #ffffff !important;
  font-size: 28px !important;
  line-height: 1 !important;
  padding-left: 4px !important;
  box-shadow: 0 18px 40px rgba(255, 23, 68, .35) !important;
}

.media-platform-thumb__label {
  position: absolute !important;
  left: 16px !important;
  bottom: 14px !important;
  z-index: 3 !important;
  min-height: 32px !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  background: rgba(3, 12, 31, .72) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  backdrop-filter: blur(8px) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.media-inline-frame {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  min-height: 190px !important;
  display: block !important;
  border: 0 !important;
  border-radius: 18px 18px 0 0 !important;
  background: #000 !important;
}

@media (max-width: 640px) {
  .media-platform-thumb,
  .media-inline-frame {
    min-height: 205px !important;
    border-radius: 16px 16px 0 0 !important;
  }

  .media-platform-thumb__play {
    width: 68px !important;
    height: 50px !important;
    font-size: 24px !important;
  }

  .media-platform-thumb__label {
    left: 12px !important;
    bottom: 10px !important;
    font-size: 11px !important;
  }
}
/* MEDIOS_INLINE_MOBILE_FIX_END */























/* HOME_FINAL_CLEAN_START */

body.home-final-clean .dark-shell {
  width: 100% !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 28px 48px !important;
  box-sizing: border-box !important;
}

body.home-final-clean .dark-hero__center {
  max-width: 1080px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  text-align: center !important;
}

body.home-final-clean .dark-hero__center h1 {
  display: none !important;
}

body.home-final-clean .dark-short-quote {
  margin: 8px 0 8px !important;
}

body.home-final-clean .dark-red-line {
  margin: 0 auto 10px !important;
}

body.home-final-clean .dark-slogan {
  margin: 0 auto 10px !important;
  max-width: 980px !important;
}

body.home-final-clean .dark-places {
  margin: 0 auto 10px !important;
  text-align: center !important;
}

body.home-final-clean .dark-badge {
  width: fit-content !important;
  max-width: calc(100% - 32px) !important;
  margin: 0 auto !important;
  padding: 10px 28px !important;
  border: 1.5px solid rgba(255, 196, 45, .95) !important;
  border-radius: 14px !important;
  background: rgba(3, 13, 34, .38) !important;
  color: #ffc42d !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  letter-spacing: .02em !important;
  line-height: 1.1 !important;
  text-align: center !important;
  box-shadow: none !important;
}

body.home-final-clean .dark-down-pointer {
  width: 100% !important;
  height: 38px !important;
  margin: 4px auto 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 38px !important;
  line-height: 1 !important;
  text-align: center !important;
  transform: none !important;
  left: 0 !important;
  position: relative !important;
  z-index: 5 !important;
}

body.home-final-clean .dark-category-grid {
  width: 100% !important;
  max-width: 1260px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
  transform: none !important;
  position: relative !important;
  z-index: 4 !important;
  box-sizing: border-box !important;
}

body.home-final-clean .dark-category {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 112px !important;
  box-sizing: border-box !important;
}

body.home-final-clean .after-category-actions {
  width: 100% !important;
  max-width: 920px !important;
  margin: 22px auto 36px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  align-items: center !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

body.home-final-clean .after-category-actions__cta {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}

body.home-final-clean .dark-subscription-button {
  margin: 0 auto !important;
  opacity: 1 !important;
  filter: none !important;
}

body.home-final-clean .dark-hero-ad {
  width: 100% !important;
  margin: 0 auto !important;
  border-radius: 22px !important;
  border: 1px solid rgba(255, 198, 45, .58) !important;
  background:
    radial-gradient(circle at 8% 50%, rgba(255, 198, 45, .20), transparent 30%),
    radial-gradient(circle at 92% 50%, rgba(255, 45, 85, .18), transparent 32%),
    linear-gradient(135deg, rgba(5, 18, 45, .88), rgba(16, 13, 32, .88)) !important;
  box-shadow: 0 20px 55px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.06) !important;
  opacity: 1 !important;
  filter: none !important;
}

body.home-final-clean .dark-hero-ad__inner {
  min-height: 104px !important;
  padding: 18px 24px !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 22px !important;
}

body.home-final-clean .dark-hero-ad__copy {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

body.home-final-clean .dark-hero-ad__copy span {
  width: fit-content !important;
  padding: 5px 11px !important;
  border-radius: 999px !important;
  background: rgba(255, 198, 45, .14) !important;
  color: #ffc42d !important;
  border: 1px solid rgba(255, 198, 45, .34) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: .13em !important;
}

body.home-final-clean .dark-hero-ad__copy strong {
  color: #fff !important;
  font-size: clamp(22px, 2vw, 32px) !important;
  line-height: 1.05 !important;
  font-weight: 950 !important;
}

body.home-final-clean .dark-hero-ad__copy small {
  color: rgba(255,255,255,.78) !important;
  font-size: 14px !important;
}

body.home-final-clean .dark-hero-ad__cta {
  white-space: nowrap !important;
  min-height: 44px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #ffc42d, #ffde73) !important;
  color: #061026 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
}

/* Tablet */
@media (max-width: 1100px) {
  body.home-final-clean .dark-shell {
    padding: 0 18px 42px !important;
  }

  body.home-final-clean .dark-category-grid {
    max-width: 620px !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  body.home-final-clean .dark-shell {
    padding: 0 12px 36px !important;
  }

  body.home-final-clean .dark-badge {
    width: 100% !important;
    padding: 11px 14px !important;
    font-size: 13px !important;
  }

  body.home-final-clean .dark-down-pointer {
    height: 40px !important;
    font-size: 40px !important;
    margin: 3px auto 8px !important;
  }

  body.home-final-clean .dark-category-grid {
    max-width: 100% !important;
    gap: 11px !important;
  }

  body.home-final-clean .after-category-actions {
    margin: 18px auto 30px !important;
    gap: 14px !important;
  }

  body.home-final-clean .dark-hero-ad__inner {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 14px !important;
  }

  body.home-final-clean .dark-hero-ad__copy {
    align-items: center !important;
  }

  body.home-final-clean .dark-hero-ad__cta {
    width: fit-content !important;
    margin: 0 auto !important;
  }
}

/* HOME_FINAL_CLEAN_END */

/* HEADER_COMPACT_LOGO_FINAL_START */

/* Corregir espacio excesivo del header */
body.home-final-clean .dark-header,
.dark-header {
  min-height: 78px !important;
  height: 78px !important;
  padding: 0 !important;
}

/* Evita que el padding global de .dark-shell dañe el header */
body.home-final-clean .dark-header .dark-shell,
.dark-header .dark-shell,
.dark-header__inner {
  height: 78px !important;
  min-height: 78px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
}

/* Logo más proporcionado */
.dark-logo,
.dark-header__logo,
.dark-header a[aria-label="Inicio"] {
  display: inline-flex !important;
  align-items: center !important;
}

.dark-logo img,
.dark-header__logo img,
.dark-header img {
  max-height: 58px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* Menú centrado verticalmente */
.dark-nav {
  display: flex !important;
  align-items: center !important;
}

/* Ajuste tablet/mobile */
@media (max-width: 760px) {
  body.home-final-clean .dark-header,
  .dark-header {
    height: 86px !important;
    min-height: 86px !important;
  }

  body.home-final-clean .dark-header .dark-shell,
  .dark-header .dark-shell,
  .dark-header__inner {
    height: 86px !important;
    min-height: 86px !important;
  }

  .dark-logo img,
  .dark-header__logo img,
  .dark-header img {
    max-height: 56px !important;
  }
}

/* HEADER_COMPACT_LOGO_FINAL_END */

/* MOBILE_HEADER_MENU_FIX_FINAL_START */

/* Tablet y mobile: header en dos líneas limpias */
@media (max-width: 900px) {
  .dark-header,
  body.home-final-clean .dark-header {
    height: auto !important;
    min-height: 128px !important;
    padding: 10px 0 12px !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 50 !important;
  }

  .dark-header .dark-shell,
  body.home-final-clean .dark-header .dark-shell,
  .dark-header__inner {
    height: auto !important;
    min-height: 0 !important;
    width: 100% !important;
    padding: 0 14px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    overflow: visible !important;
  }

  .dark-logo,
  .dark-header__logo,
  .dark-header a[aria-label="Inicio"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .dark-logo img,
  .dark-header__logo img,
  .dark-header img {
    max-height: 58px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
  }

  .dark-nav {
    width: 100% !important;
    min-height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .dark-nav a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 30px !important;
    line-height: 1 !important;
    padding: 6px 0 !important;
    margin: 0 !important;
    font-size: 15px !important;
    white-space: nowrap !important;
  }

  .dark-nav a::after {
    bottom: -2px !important;
  }

  /* El hero empieza debajo del header, no encima */
  .dark-hero,
  .dark-main,
  main {
    margin-top: 0 !important;
  }
}

/* Celulares pequeños */
@media (max-width: 430px) {
  .dark-header,
  body.home-final-clean .dark-header {
    min-height: 122px !important;
    padding-top: 8px !important;
    padding-bottom: 10px !important;
  }

  .dark-logo img,
  .dark-header__logo img,
  .dark-header img {
    max-height: 54px !important;
  }

  .dark-nav {
    gap: 14px !important;
  }

  .dark-nav a {
    font-size: 14px !important;
  }
}

/* MOBILE_HEADER_MENU_FIX_FINAL_END */

/* MOBILE_HEADER_MENU_FIX_FINAL_START */

/* Tablet y mobile: header en dos líneas limpias */
@media (max-width: 900px) {
  .dark-header,
  body.home-final-clean .dark-header {
    height: auto !important;
    min-height: 128px !important;
    padding: 10px 0 12px !important;
    overflow: visible !important;
    position: relative !important;
    z-index: 50 !important;
  }

  .dark-header .dark-shell,
  body.home-final-clean .dark-header .dark-shell,
  .dark-header__inner {
    height: auto !important;
    min-height: 0 !important;
    width: 100% !important;
    padding: 0 14px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    overflow: visible !important;
  }

  .dark-logo,
  .dark-header__logo,
  .dark-header a[aria-label="Inicio"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .dark-logo img,
  .dark-header__logo img,
  .dark-header img {
    max-height: 58px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
  }

  .dark-nav {
    width: 100% !important;
    min-height: 34px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .dark-nav a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 30px !important;
    line-height: 1 !important;
    padding: 6px 0 !important;
    margin: 0 !important;
    font-size: 15px !important;
    white-space: nowrap !important;
  }

  .dark-nav a::after {
    bottom: -2px !important;
  }

  /* El hero empieza debajo del header, no encima */
  .dark-hero,
  .dark-main,
  main {
    margin-top: 0 !important;
  }
}

/* Celulares pequeños */
@media (max-width: 430px) {
  .dark-header,
  body.home-final-clean .dark-header {
    min-height: 122px !important;
    padding-top: 8px !important;
    padding-bottom: 10px !important;
  }

  .dark-logo img,
  .dark-header__logo img,
  .dark-header img {
    max-height: 54px !important;
  }

  .dark-nav {
    gap: 14px !important;
  }

  .dark-nav a {
    font-size: 14px !important;
  }
}

/* MOBILE_HEADER_MENU_FIX_FINAL_END */
