:root {
  --bg: #04060c;
  --panel: #080d1a;
  --border: #1b2b4c;
  --blue: #3a6bff;
  --blue-lt: #5ab4ff;
  --text: #e7edff;
  --text-dim: #c8d4ea;
  --text-mute: #6d7aa8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  overflow: hidden;
}
.hero-bg, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: 0;
}
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(4,6,12,.35) 0%, rgba(4,6,12,0) 26%,
    rgba(4,6,12,.15) 50%, rgba(4,6,12,.82) 82%, var(--bg) 100%);
}
.brand {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
}
.brand img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 8px rgba(90,180,255,.7));
}
.brand span {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .1em;
  color: #eaf2ff;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 12px 6vh;
  max-width: 900px;
  width: 100%;
}
.hero-banner {
  margin: 0 0 10px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .1em;
  color: #ffd9a0;
  text-shadow: 0 0 14px rgba(0,0,0,.6);
}
.hero-banner:empty { display: none; }
.hero-tag {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .4em;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: #7bbcff;
  text-shadow: 0 0 16px rgba(50,140,255,.95);
}
.hero-word {
  display: block;
  width: min(760px, 94%);
  height: auto;
  margin: 0 auto;
  animation: wordGlow 4.5s ease-in-out infinite;
}
@keyframes wordGlow {
  0%,100% { filter: drop-shadow(0 0 14px rgba(40,120,255,.35)); }
  50%     { filter: drop-shadow(0 0 32px rgba(70,160,255,.8)); }
}
.hero-desc {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 2px auto 0;
  max-width: 380px;
  text-shadow: 0 1px 8px rgba(0,0,0,.7);
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 14px 16px 14px 30px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #eef6ff;
  text-decoration: none;
  border-radius: 11px;
  border: 1.5px solid rgba(95,185,255,.85);
  background: linear-gradient(180deg, rgba(24,52,102,.6), rgba(8,20,45,.55));
  box-shadow: 0 0 32px rgba(74,160,255,.5), inset 0 0 22px rgba(74,150,255,.22);
  animation: btnGlow 4.5s ease-in-out infinite;
}
@keyframes btnGlow {
  0%,100% { box-shadow: 0 0 24px rgba(74,160,255,.4), inset 0 0 18px rgba(74,150,255,.18); }
  50%     { box-shadow: 0 0 40px rgba(90,180,255,.7), inset 0 0 24px rgba(90,180,255,.3); }
}
.hero-btn .cv {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(130,195,255,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 10px rgba(90,180,255,.3);
}
.hero-btn .cv::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid #cfe6ff;
  border-top: 2px solid #cfe6ff;
  transform: rotate(45deg);
  margin-left: -2px;
}
.hero-scroll {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  z-index: 2;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #8ea6dd;
}
.chev {
  display: block;
  margin: 8px auto 0;
  width: 14px;
  height: 14px;
  border-right: 2px solid #8ea6dd;
  border-bottom: 2px solid #8ea6dd;
  transform: rotate(45deg);
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: rotate(45deg) translate(0,0); opacity: .6; }
  50%     { transform: rotate(45deg) translate(3px,3px); opacity: 1; }
}

/* ==================== PAGE / SECTIONS ==================== */
.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}
.sec { padding: 64px 0 0; scroll-margin-top: 20px; }
.sec-h {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 34px;
}
.sec-h::before, .sec-h::after {
  content: '';
  height: 1px;
  width: 48px;
  background: linear-gradient(90deg, transparent, var(--blue));
}
.sec-h::after { background: linear-gradient(90deg, var(--blue), transparent); }
.sec-h h2 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(20px, 4vw, 28px);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #eaf1ff;
  margin: 0;
  text-shadow: 0 0 18px rgba(60,140,255,.4);
}

/* FEATURED band */
.feat {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 340px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #22345c;
  box-shadow: 0 20px 60px rgba(8,18,50,.6);
  text-decoration: none;
}
.feat-thumb {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-color: #0a1024;
}
.feat::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4,6,12,.1) 0%, rgba(4,6,12,.35) 45%, rgba(4,6,12,.95) 100%);
}
.feat-c { position: relative; z-index: 2; padding: 34px 36px; max-width: 640px; }
.pill {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8fc7ff;
  border: 1px solid #2c4a78;
  padding: 5px 13px;
  border-radius: 22px;
  margin-bottom: 14px;
  background: rgba(10,16,32,.55);
}
.feat-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(22px, 4.5vw, 32px);
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: .02em;
}
.watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bfe2ff;
}
.watch::after { content: '→'; }
.play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid rgba(140,195,255,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,25,55,.35);
  box-shadow: 0 0 30px rgba(74,150,255,.55);
}
.play::after {
  content: '';
  border-left: 20px solid #eaf4ff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

/* VIDEO GRID */
.vgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vc {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.vc:hover {
  transform: translateY(-5px);
  border-color: #4a7cff;
  box-shadow: 0 16px 40px rgba(10,30,80,.5);
}
.vc-th {
  position: relative;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #0a1024;
}
.vc-th::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6,10,22,.6));
}
.vc-dur {
  position: absolute;
  bottom: 9px;
  right: 9px;
  z-index: 2;
  background: rgba(0,0,0,.78);
  color: #dbe6ff;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 5px;
  font-weight: 600;
}
.vc-b { padding: 15px 16px; }
.vc-b h4 { margin: 0; color: var(--text); font-size: 15px; font-weight: 600; line-height: 1.35; }
.grid-error {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-mute);
  font-size: 14px;
}
.grid-error a { color: var(--blue-lt); }

/* SERIES */
.series { display: flex; flex-direction: column; }
.serie-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 120px;
  padding: 0 30px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(100deg, #0e1830, var(--panel) 78%);
  margin-bottom: 16px;
  text-decoration: none;
  transition: transform .25s;
}
.serie-card:hover { transform: translateY(-4px); }
.serie-card h4 {
  font-family: 'Cinzel', serif;
  margin: 0;
  color: #f0f4ff;
  font-size: 20px;
  letter-spacing: .04em;
}
.serie-card p { margin: 5px 0 0; color: #7f9cd6; font-size: 14px; }

/* LINKS */
.lgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.lnk {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  text-decoration: none;
  transition: transform .2s, border-color .2s;
}
.lnk:hover { transform: translateY(-4px); border-color: #4a7cff; }
.lnk-ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid #2c4a78;
  color: #8fc7ff;
  flex-shrink: 0;
  box-shadow: inset 0 0 12px rgba(74,150,255,.2);
  transition: box-shadow .25s, border-color .25s, color .25s;
}
.lnk-t b { display: block; color: var(--text); font-size: 17px; font-weight: 600; }
.lnk-t small { display: block; color: var(--text-mute); font-size: 13px; }
.lnk .arr { margin-left: auto; color: #5a68a8; font-size: 18px; }

/* Cada rede social com o glow da própria cor */
.lnk.yt .lnk-ic {
  border-color: #ff3b3b;
  color: #ff8a8a;
  box-shadow: 0 0 18px rgba(255,50,50,.5), inset 0 0 12px rgba(255,60,60,.25);
}
.lnk.yt:hover { border-color: rgba(255,60,60,.6); }
.lnk.yt:hover .lnk-ic { box-shadow: 0 0 28px rgba(255,60,60,.85), inset 0 0 16px rgba(255,60,60,.35); }

.lnk.ig .lnk-ic {
  border-color: #b25bff;
  color: #dcaaff;
  box-shadow: 0 0 18px rgba(178,91,255,.5), inset 0 0 12px rgba(178,91,255,.25);
}
.lnk.ig:hover { border-color: rgba(178,91,255,.6); }
.lnk.ig:hover .lnk-ic { box-shadow: 0 0 28px rgba(178,91,255,.85), inset 0 0 16px rgba(178,91,255,.35); }

.lnk.sup {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, #241d02, var(--panel) 78%);
  border-color: #6b5a12;
}
.lnk.sup .lnk-ic {
  border-color: #ffd93d;
  color: #ffe98a;
  box-shadow: 0 0 18px rgba(255,217,61,.5), inset 0 0 12px rgba(255,217,61,.25);
}
.lnk.sup:hover .lnk-ic { box-shadow: 0 0 28px rgba(255,217,61,.85), inset 0 0 16px rgba(255,217,61,.35); }
.lnk.sup .lnk-t b { color: #ffe98a; }

/* CLUB */
.club {
  background: linear-gradient(120deg, #0f1a34, var(--panel) 78%);
  border: 1px dashed #2c4a78;
  border-radius: 16px;
  padding: 34px;
  text-align: center;
  text-decoration: none;
  display: block;
}
.club .tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: .16em;
  color: #8fc7ff;
  border: 1px solid #2c4a78;
  padding: 5px 15px;
  border-radius: 22px;
}
.club-title { font-family: 'Cinzel', serif; margin: 14px 0 6px; color: #fff; font-size: 22px; letter-spacing: .04em; }
.club-desc { margin: 0; color: #7f9cd6; font-size: 15px; }
.club--active { border-style: solid; border-color: var(--blue); }

.foot {
  text-align: center;
  padding: 60px 0 40px;
  color: #54608c;
  font-size: 12px;
  letter-spacing: .08em;
}

/* ==================== MOBILE ==================== */
@media (max-width: 640px) {
  .hero { min-height: 660px; justify-content: flex-end; }
  .hero-bg, .hero-bg img { object-position: center 38%; }
  .hero-fade {
    background: linear-gradient(180deg,
      rgba(4,6,12,.2) 0%, rgba(4,6,12,0) 28%,
      rgba(4,6,12,.1) 50%, rgba(4,6,12,.72) 74%, var(--bg) 100%);
  }
  /* texto do hero sobe pra faixa do pôr do sol, acima dos personagens */
  .hero-content { padding: 0 18px 15%; }
  .hero-word { width: 92%; }
  .hero-desc { font-size: 14px; max-width: 300px; }
  /* botão escondido no celular (decisão do criador) */
  .hero-btn { display: none; }

  .page { padding: 0 16px; }
  .sec { padding: 40px 0 0; }
  .sec-h { gap: 12px; margin-bottom: 22px; }
  .sec-h::before, .sec-h::after { width: 30px; }

  .feat { min-height: 300px; }
  .feat-c { padding: 24px 22px; }

  .vgrid, .lgrid { grid-template-columns: 1fr; }
  .lnk.sup { grid-column: auto; }

  .serie-card { min-height: 100px; padding: 0 22px; }
  .serie-card h4 { font-size: 17px; }
}

/* ===== SHORTS — COVERFLOW 3D ===== */
.shorts-carousel { margin-top: 8px; }

.shorts-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding: 40px 0 56px;
}
.shorts-viewport::-webkit-scrollbar { display: none; }
.shorts-viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.shorts-track {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 calc(50% - 80px);
  width: max-content;
}

.shorts-card {
  flex: 0 0 auto;
  width: 160px;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border);
  scroll-snap-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  will-change: transform, opacity;
  transform: perspective(800px);
}

.shorts-th {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.shorts-th::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,6,12,.92) 0%, rgba(4,6,12,.15) 45%, transparent 70%);
}

.shorts-title {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  margin: 0;
  padding: 10px 12px 12px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  z-index: 1;
}

@media (max-width: 640px) {
  .shorts-track { padding: 0 calc(50% - 60px); gap: 14px; }
  .shorts-card { width: 120px; }
  .shorts-title { font-size: 11.5px; padding: 8px 10px 10px; }
}
