:root{
  --bg:#0f1013;
  --panel:#17181d;
  --panel2:#1e2027;
  --text:#f4f6ff;
  --muted:#b5b9c7;
  --chip:#2a2d37;
  --stroke:rgba(255,255,255,.08);
  --accent:#3f46ff;
  --accent2:#ff2a6d;
  --radius:18px;

  /* topo claro */
  --top-bg1: rgba(245,246,248,.98);
  --top-bg2: rgba(232,235,240,.92);
  --top-stroke: rgba(0,0,0,.10);
  --top-text: #121318;
  --top-muted: rgba(0,0,0,.62);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

.topbar{
  height:16px;
  background: transparent;
}

/* Header (TOPO CLARO) */
header{
  position:sticky;
  top:0;
  z-index:10;
  background: linear-gradient(to bottom, var(--top-bg1), var(--top-bg2));
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--top-stroke);
}

.header-inner{
  height:58px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:0 14px;
  max-width:520px;
  margin:0 auto;
}

/* Botões no topo claro */
.icon-btn{
  width:40px;height:40px;
  border-radius:12px;
  border:1px solid var(--top-stroke);
  background:rgba(255,255,255,.7);
  display:grid;
  place-items:center;
  cursor:pointer;
  position:relative;
  color:var(--top-text);
}

/* hamburger escuro */
.hamburger{ width:18px;height:12px; position:relative; }
.hamburger:before,.hamburger:after,.hamburger span{
  content:"";
  position:absolute;left:0;right:0;
  height:2px;border-radius:2px;
  background:rgba(0,0,0,.72);
}
.hamburger:before{top:0}
.hamburger span{top:5px; opacity:.85}
.hamburger:after{bottom:0; opacity:.65}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:950;
  letter-spacing:.9px;
  font-size:22px;
  flex:1;
  justify-content:center;
  user-select:none;
  text-transform:uppercase;
  color:var(--top-text);
}

/* Ícone ∞ só com CSS (sem imagem) */
.brand::after{
  content:"∞";
  display:inline-grid;
  place-items:center;
  width:28px;height:28px;
  border-radius:10px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 25px rgba(0,0,0,.10);
  font-size:18px;
  font-weight:900;
  letter-spacing:-1px;
  color: transparent;
  background-image: linear-gradient(135deg, var(--accent2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
}

/* Mantém o badge (se você ainda estiver usando) */
.brand .badge{
  width:22px;height:22px;border-radius:8px;
  background:linear-gradient(135deg,var(--accent2),#ffb400);
  box-shadow:0 10px 25px rgba(255,42,109,.25);
  display:none; /* esconde pra não ficar duplo com o ∞ */
}

.header-actions{ display:flex; gap:10px; }
.circle{ border-radius:999px; }

/* Page */
.page{
  max-width:520px;
  margin:0 auto;
  padding:18px 14px 96px;
}

h2{ margin:18px 0 12px; font-size:30px; letter-spacing:.2px; }

/* scroll */
.h-scroll{
  display:flex;
  gap:14px;
  overflow:auto;
  padding-bottom:6px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.h-scroll::-webkit-scrollbar{height:6px}
.h-scroll::-webkit-scrollbar-thumb{background:rgba(255,255,255,.12); border-radius:999px}

/* cards */
.card{
  scroll-snap-align:start;
  min-width:260px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
  box-shadow:0 14px 40px rgba(0,0,0,.35);
}

.poster{
  height:190px;
  background:
    radial-gradient(1000px 300px at -10% 110%, rgba(63,70,255,.35), transparent 60%),
    radial-gradient(900px 320px at 110% -10%, rgba(255,42,109,.28), transparent 55%),
    linear-gradient(135deg, #2b2f3a, #14161b);
  position:relative;
}
.poster::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.65), transparent 55%);
}
.rank{
  position:absolute;
  left:14px; top:14px;
  font-size:44px;
  font-weight:900;
  color:rgba(255,255,255,.22);
  text-shadow:0 10px 20px rgba(0,0,0,.35);
  z-index:2;
}

.card-body{
  padding:14px 14px 16px;
  background:linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.20));
}
.title{
  font-size:20px;
  font-weight:900;
  margin:0 0 10px;
  line-height:1.15;
}
.chips{ display:flex; gap:10px; flex-wrap:wrap; }
.chip{
  font-size:13px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--stroke);
  color:rgba(255,255,255,.88);
  white-space:nowrap;
}

.section-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:26px;
  margin-bottom:12px;
  gap:10px;
}
.section-row h3{ margin:0; font-size:28px; font-weight:950; }
.see-all{
  padding:10px 14px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--stroke);
  color:rgba(255,255,255,.88);
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
}

/* hero */
.hero{
  border-radius:22px;
  border:1px solid var(--stroke);
  overflow:hidden;
  background:linear-gradient(135deg,#2a2d37,#121318);
  box-shadow:0 18px 55px rgba(0,0,0,.45);
}
.hero-top{
  height:270px;
  position:relative;
  background:
    radial-gradient(900px 340px at 10% 105%, rgba(63,70,255,.32), transparent 60%),
    radial-gradient(700px 260px at 110% -10%, rgba(255,42,109,.24), transparent 56%),
    linear-gradient(135deg,#2c3140,#121318);
}
.hero-top::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.78), transparent 55%);
}
.hero-content{
  position:absolute;
  left:16px; right:16px; bottom:14px;
  z-index:2;
}
.hero-kicker{
  font-size:12px;
  color:rgba(255,255,255,.78);
  letter-spacing:.9px;
  text-transform:uppercase;
  font-weight:900;
  margin-bottom:6px;
}
.hero-title{
  font-size:28px;
  font-weight:980;
  margin:0 0 12px;
  line-height:1.05;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; }

.btn{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.92);
  font-weight:950;
  padding:12px 16px;
  border-radius:999px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.btn.primary{ background:rgba(255,255,255,.14); }

.play{
  width:0;height:0;
  border-left:10px solid rgba(255,255,255,.92);
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  margin-left:2px;
}

/* dots */
.dots{ display:flex; justify-content:center; gap:8px; margin:14px 0 6px; }
.dot{ width:8px;height:8px;border-radius:999px; background:rgba(255,255,255,.22); }
.dot.active{ width:22px; background:rgba(255,255,255,.9); border-radius:999px; }

/* categories row */
.cat-row{
  margin-top:8px;
  display:flex;
  gap:12px;
  overflow:auto;
  padding:10px 4px 6px;
  -webkit-overflow-scrolling:touch;
}
.cat-row::-webkit-scrollbar{height:6px}
.cat-row::-webkit-scrollbar-thumb{background:rgba(255,255,255,.12); border-radius:999px}

.cat{
  min-width:118px;
  height:56px;
  border-radius:16px;
  border:1px solid var(--stroke);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  letter-spacing:.9px;
  text-transform:uppercase;
  position:relative;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  color:rgba(255,255,255,.92);
  cursor:pointer;
}
.cat::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.35), transparent 60%);
}
.cat span{ position:relative; z-index:2; font-size:13px; }

.disney{ background:linear-gradient(135deg, #1b4fff, #071539); }
.pixar{ background:linear-gradient(135deg, #8ad7ff, #1f5d84); }
.marvel{ background:linear-gradient(135deg, #ff2a2a, #6b0000); }
.starwars{ background:linear-gradient(135deg, #151515, #000000); }

/* info */
.info{
  margin-top:14px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--stroke);
  border-radius:22px;
  padding:16px 16px;
  position:relative;
}
.info h4{
  margin:0;
  font-size:22px;
  font-weight:950;
  letter-spacing:.2px;
}
.info p{
  margin:8px 0 0;
  color:rgba(255,255,255,.70);
  line-height:1.4;
  font-weight:650;
}
.info .chev{
  position:absolute;
  right:12px; top:12px;
  width:40px;height:40px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.20);
  display:grid;
  place-items:center;
}
.info .chev:before{
  content:"";
  width:10px;height:10px;
  border-right:3px solid rgba(255,255,255,.85);
  border-bottom:3px solid rgba(255,255,255,.85);
  transform:rotate(45deg);
  margin-top:-3px;
  opacity:.9;
}

/* watchbar */
.watchbar{
  margin-top:12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.06);
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:980;
  letter-spacing:.6px;
  cursor:pointer;
}

/* fab */
.fab{
  position:fixed;
  right:16px;
  bottom:16px;
  width:46px;height:46px;
  border-radius:16px;
  background:rgba(0,0,0,.35);
  border:2px solid rgba(255,42,109,.9);
  box-shadow:0 18px 50px rgba(0,0,0,.5);
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:20;
}
.fab:before{
  content:"";
  width:10px;height:10px;
  border-right:3px solid rgba(255,255,255,.9);
  border-top:3px solid rgba(255,255,255,.9);
  transform:rotate(-45deg);
  margin-top:4px;
}

/* drawer */
.backdrop{
  position:fixed; inset:0;
  background:rgba(0,0,0,.55);
  z-index:30;
}
.drawer{
  position:fixed;
  top:0; left:0;
  height:100%;
  width:min(320px, 86vw);
  background:rgba(23,24,29,.98);
  border-right:1px solid var(--stroke);
  transform:translateX(-110%);
  transition:transform .2s ease;
  z-index:31;
  padding:14px;
}
.drawer.open{ transform:translateX(0); }
.drawer-head{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:12px;
}
.drawer-nav{ display:flex; flex-direction:column; gap:10px; }
.drawer-item{
  text-align:left;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
}

.muted{
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
  margin:10px 0 0;
}

@media (min-width: 900px){
  body{display:flex;justify-content:center}
  .shell{width:430px}
}
/* categorias de gênero (todas com um gradiente bonito padrão) */
.cat-genre{
  background:
    radial-gradient(700px 180px at 10% 110%, rgba(255,255,255,.14), transparent 60%),
    linear-gradient(135deg, rgba(63,70,255,.35), rgba(255,42,109,.25));
}
/* ===== HEADER CLEAN (DEGRADÊ SUAVE) ===== */

.topbar{
  background:#f2f2f2;
}

/* header principal */
header{
  background: linear-gradient(
    to bottom,
    rgba(245,245,245,0.95) 0%,
    rgba(245,245,245,0.85) 35%,
    rgba(245,245,245,0.55) 55%,
    rgba(15,16,19,0.85) 100%
  );
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* texto do logo */
header .brand span{
  color:#111;
  font-weight:900;
  letter-spacing:1px;
}

/* ícones */
header .icon-btn{
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(0,0,0,.08);
}

