:root{
      --accent:#e1ff01;
    }
    html{ scroll-behavior:smooth }
    body{
      background:#050505;
      background-image:
        radial-gradient(circle at 20% 0%, rgba(225,255,1,0.06) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(255,255,255,0.05) 0, transparent 55%),
        linear-gradient(to bottom, #050505, #050505);
    }

    /* ===== Hero: tarjeta consistente mobile/desktop ===== */
    .hero-fixed{
      position: relative;
      overflow: hidden;
      border-radius: 1.75rem;
      border: 1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(140% 160% at 0% 0%, rgba(225,255,1,0.16), transparent 55%),
        #050505;
      min-height: 260px;
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 28px 80px rgba(0,0,0,0.85);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    @media (min-width: 1024px){
      .hero-fixed{
        flex-direction: row;
        min-height: 360px;
      }
    }

    .hero-media{
      position: relative;
      min-height: 220px;
      flex: 1 1 50%;
      overflow: hidden;
    }
    .hero-media img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      user-select:none;
      -webkit-user-drag:none;
      transform-origin:center;
      transition: transform .8s ease-out;
    }
    .swiper-slide-active .hero-media img{
      transform: scale(1.04);
    }
    .hero-media-gradient{
      position:absolute;
      inset:0;
      background:
        linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.15) 40%, transparent 80%),
        radial-gradient(120% 120% at 10% 0%, rgba(225,255,1,0.28), transparent 60%);
      pointer-events:none;
    }

    .hero-body{
      flex: 1 1 50%;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      padding: 1.5rem;
      background:
        radial-gradient(160% 140% at 100% 0%, rgba(225,255,1,0.08), transparent 50%),
        rgba(3,3,3,0.96);
    }
    @media (min-width: 640px){
      .hero-body{ padding: 2rem; }
    }
    @media (min-width: 1024px){
      .hero-body{ padding: 2.25rem 2.5rem; }
    }

    .hero-badge{
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(0,0,0,.6);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }
    .hero-badge-dot{
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(225,255,1,0.2);
    }

    .hero-title{
      font-weight: 800;
      line-height: 1.1;
    }

    .hero-chip-row{
      display:flex;
      flex-wrap:wrap;
      gap:0.4rem;
      font-size:11px;
      color:rgba(255,255,255,.7);
    }
    .hero-chip{
      padding: .2rem .6rem;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.02);
    }

    /* ===== Controles Swiper — flotantes centrados ===== */
    .hero-overlay{
      position:absolute; inset:0; pointer-events:none;
      display:flex; align-items:center; justify-content:space-between;
      padding: 0 1rem;
    }
    .hero-nav{
      pointer-events:auto;
      width:46px; height:46px; border-radius:9999px;
      background:rgba(0,0,0,.55);
      border:1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(6px);
      display:grid; place-items:center;
      transition:all .2s ease, opacity .2s ease;
      opacity:0;
    }
    .hero-nav:hover{
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(225,255,1,0.15);
      transform: translateY(-1px);
    }
    .hero-nav svg{ width:18px; height:18px; color:#fff; }

    #heroSwiper.controls-visible .hero-nav{ opacity:1; }

    .swiper-pagination-bullet{
      background: rgba(255,255,255,.35);
      opacity: 1; transform: scale(.9);
      transition: all .2s ease;
    }
    .swiper-pagination-bullet-active{
      background: var(--accent);
      transform: scale(1.1);
      box-shadow: 0 0 0 3px rgba(225,255,1,0.15);
    }

    /* ===== Secciones generales ===== */
    .section-shell{
      position:relative;
      overflow:hidden;
    }
    .section-shell::before{
      content:"";
      position:absolute;
      inset:0;
      opacity:0.35;
      pointer-events:none;
      background-image:
        radial-gradient(circle at 80% 0%, rgba(225,255,1,0.08), transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(255,255,255,0.05), transparent 60%);
      mix-blend-mode:screen;
    }
    .section-inner{
      position:relative;
      z-index:1;
    }

    .card-grid{
      display:grid;
      grid-template-columns:repeat(1,minmax(0,1fr));
      gap:1rem;
    }
    @media (min-width:640px){
      .card-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
    }
    @media (min-width:1024px){
      .card-grid{ grid-template-columns:repeat(3,minmax(0,1fr)); }
    }

    .section-label{
      font-size:11px;
      letter-spacing:.18em;
      text-transform:uppercase;
      color:rgba(255,255,255,.5);
      display:flex;
      align-items:center;
      gap:6px;
    }
    .section-label span{
      width:26px;
      height:1px;
      border-radius:999px;
      background:linear-gradient(to right, rgba(225,255,1,0.7), transparent);
    }

    /* ===== Tarjetas generales ===== */
    .card-shell{
      border-radius:1.5rem;
      border:1px solid rgba(255,255,255,0.08);
      background:radial-gradient(circle at 0 0, rgba(225,255,1,0.06), transparent 60%), #111111;
      box-shadow:0 18px 40px rgba(0,0,0,0.8);
    }

    /* ===== Nearby scroll en movil ===== */
    @media (max-width: 639px){
      .near-scroll{
        display:flex;
        overflow-x:auto;
        gap:1rem;
        padding-bottom:.25rem;
        scroll-snap-type:x mandatory;
      }
      .near-scroll > *{
        min-width:260px;
        scroll-snap-align:start;
      }
    }

    /* ===== Top picks rail (stories-like) ===== */
    .top-picks-rail{
      display:flex;
      overflow-x:auto;
      gap:0.75rem;
      padding:0.25rem 0 0.6rem;
      scroll-snap-type:x mandatory;
    }
    .top-picks-rail > *{
      scroll-snap-align:start;
      text-decoration:none;
    }
    .top-picks-avatar{
      width:64px;
      height:64px;
      border-radius:9999px;
      border:2px solid rgba(225,255,1,0.9);
      background:#111;
      overflow:hidden;
      position:relative;
      flex-shrink:0;
      box-shadow:0 0 0 2px rgba(0,0,0,0.9);
    }
    .top-picks-avatar img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .top-picks-label{
      margin-top:0.35rem;
      font-size:11px;
      line-height:1.3;
      color:rgba(255,255,255,0.8);
      max-width:72px;
      word-break:break-word;
    }
    @media (min-width:640px){
      .top-picks-avatar{
        width:72px;
        height:72px;
      }
      .top-picks-label{
        font-size:12px;
        max-width:96px;
      }
    }

    /* ===== Story progress bars ===== */
    .story-progress{
      display:flex;
      gap:4px;
    }
    .story-bar{
      flex:1;
      height:3px;
      background:rgba(255,255,255,0.28);
      border-radius:999px;
      overflow:hidden;
    }
    .story-bar-fill{
      height:100%;
      width:0;
      background:#fff;
      border-radius:999px;
      transition:none;
    }
    .story-bar-fill.full{
      width:100%;
    }