* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #070707;
  color: #f5f5f5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 48px;
  background: linear-gradient(180deg, rgba(0,0,0,.92), rgba(0,0,0,.35), transparent);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ff1e3c;
  text-shadow: 0 0 18px rgba(255, 30, 60, .75);
}

.menu {
  display: flex;
  gap: 24px;
  font-size: 15px;
  color: #d8d8d8;
}

.menu a:hover {
  color: #ff1e3c;
}

.btn-icon {
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
}

.search-panel {
  position: fixed;
  top: 86px;
  right: 42px;
  z-index: 30;
  width: min(520px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid rgba(255, 30, 60, .35);
  border-radius: 18px;
  background: rgba(10,10,10,.96);
  box-shadow: 0 0 30px rgba(255, 30, 60, .18);
}

.search-panel label {
  display: block;
  margin-bottom: 10px;
  color: #b8b8b8;
  font-size: 14px;
}

.search-panel input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  outline: none;
  background: #111;
  color: #fff;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
  max-height: 520px;
  overflow: auto;
}

.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 52px 70px;
  background-size: cover;
  background-position: center -35%;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 35%, rgba(157, 78, 221, .24), transparent 32%),
    linear-gradient(0deg, #070707 0%, transparent 35%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 187, 255, .35);
  border-radius: 999px;
  color: #00bbff;
  background: rgba(0, 187, 255, .08);
  font-size: 13px;
  letter-spacing: .5px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .9;
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(255, 30, 60, .35);
}

.hero p {
  color: #e2e2e2;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary {
  background: #ff1e3c;
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 30, 60, .35);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
}

.catalog-section {
  padding: 42px 48px;
}

.section-header {
  margin-bottom: 18px;
}

.section-header h2 {
  margin: 0 0 6px;
  font-size: 28px;
}

.section-header p {
  margin: 0;
  color: #b8b8b8;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 18px;
}

.card {
  overflow: hidden;
  border-radius: 18px;
  background: #181818;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 30, 60, .55);
  box-shadow:
    0 0 25px rgba(255, 30, 60, .20),
    0 0 35px rgba(157, 78, 221, .16);
}

.card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #111;
}

.card-info {
  padding: 12px;
}

.card-info h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.card-info p {
  margin: 0;
  color: #b8b8b8;
  font-size: 13px;
}

.empty-state {
  grid-column: 1 / -1;
  color: #b8b8b8;
}

.footer {
  padding: 38px 48px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #050505;
  color: #b8b8b8;
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  color: #ff1e3c;
  font-size: 24px;
}

.footer p {
  margin: 5px 0;
}
/* ==============================
   PATCH VISUAL 1 — PREMIUM HOME
============================== */

body {
  background:
    radial-gradient(circle at 80% 8%, rgba(157, 78, 221, .16), transparent 30%),
    radial-gradient(circle at 10% 35%, rgba(255, 30, 60, .10), transparent 26%),
    #070707;
}

.topbar {
  border-bottom: 1px solid rgba(255, 30, 60, .10);
}

.menu a {
  position: relative;
  font-weight: 700;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: #ff1e3c;
  box-shadow: 0 0 14px rgba(255, 30, 60, .8);
  transition: width .2s ease;
}

.menu a:hover::after {
  width: 100%;
}

.hero {
  min-height: 88vh;
  isolation: isolate;
}

.hero-content {
  animation: fadeUp .7s ease both;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(52px, 6vw, 86px);
}

.hero-actions a {
  letter-spacing: .3px;
}

.catalog-section {
  position: relative;
}

.catalog-section::before {
  content: "";
  position: absolute;
  left: 48px;
  right: 48px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,30,60,.35), transparent);
}

.card-row {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.card {
  position: relative;
  background: linear-gradient(180deg, #1b1b1b, #101010);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.38));
  opacity: .7;
}

.card img {
  transition: transform .25s ease, filter .25s ease;
}

.card:hover img {
  transform: scale(1.06);
  filter: contrast(1.08) saturate(1.12);
}

.card-info {
  position: relative;
  z-index: 2;
}

.section-header h2 {
  letter-spacing: .3px;
  text-shadow: 0 0 18px rgba(0, 187, 255, .14);
}

.btn-primary:hover {
  box-shadow:
    0 0 28px rgba(255, 30, 60, .55),
    0 0 50px rgba(157, 78, 221, .18);
}

.btn-secondary:hover {
  border-color: rgba(0, 187, 255, .55);
  box-shadow: 0 0 22px rgba(0, 187, 255, .18);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==============================
   PÁGINA DETALHE — VISUAL 1
============================== */

.detail-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 150px 56px 70px;
  background-size: cover;
  background-position: center -35%;
  border-bottom: 1px solid rgba(255, 30, 60, .22);
  position: relative;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(157, 78, 221, .22), transparent 35%),
    linear-gradient(0deg, #070707 0%, transparent 45%);
  pointer-events: none;
}

.detail-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeUp .7s ease both;
}

.detail-content h1 {
  margin: 0 0 18px;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .92;
  text-shadow: 0 0 32px rgba(255, 30, 60, .32);
}

.detail-meta {
  color: #00bbff;
  font-weight: 800;
  margin-bottom: 18px;
}

.detail-description {
  max-width: 980px;
  color: #e5e5e5;
  font-size: 19px;
  line-height: 1.7;
}

.detail-section {
  padding: 48px 56px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}

.char-card {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #1b1b1b, #101010);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 0 22px rgba(255,30,60,.08);
}

.char-card img {
  width: 100%;
  height: 320px;

  object-fit: contain;
  object-position: center top;

  padding-top: 12px;

  transition: transform .25s ease;
}
.char-card:hover img {
  transform: scale(1.04);
}

.char-card h4 {
  margin: 0;
  padding: 16px;
  font-size: 18px;
}

.curiosity-list {
  display: grid;
  gap: 14px;
}

.curiosity-item {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(0, 187, 255, .18);
  color: #e7e7e7;
}

@media (max-width: 760px) {
  .detail-hero {
    min-height: 78vh;
    padding: 140px 22px 52px;
  }

  .detail-section {
    padding: 34px 20px;
  }

  .character-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* ==============================
   404 PAGE
============================== */

.notfound-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 30, 60, .25), transparent 30%),
    radial-gradient(circle at 20% 60%, rgba(0, 187, 255, .12), transparent 30%),
    #070707;
}

.notfound-box {
  max-width: 720px;
  text-align: center;
  animation: fadeUp .7s ease both;
}

.notfound-box h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 76px);
}

.notfound-box p {
  font-size: 20px;
  color: #d9d9d9;
  line-height: 1.7;
  margin-bottom: 28px;
}
/* ==============================
   HERO TRANSIÇÃO CINEMATOGRÁFICA
============================== */

.hero-content {
  transition: opacity .45s ease, transform .45s ease;
}

.hero-content.hero-changing {
  opacity: 0;
  transform: translateY(18px);
}

.hero {
  transition: background-image .6s ease;
}
.detail-logo-img {
  max-width: min(560px, 90vw);
  max-height: 220px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 22px rgba(255, 30, 60, .45));
}
.hero-logo {
  width: min(520px, 90%);
  max-height: 220px;

  object-fit: contain;
  object-position: left center;

  filter:
    drop-shadow(0 0 18px rgba(255, 0, 80, 0.35))
    drop-shadow(0 0 45px rgba(0, 180, 255, 0.12));

  user-select: none;
  pointer-events: none;
}
@media (max-width: 760px) {
  .topbar {
    height: auto;
    min-height: 72px;
    padding: 14px 18px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .logo {
    font-size: 26px;
  }

  .menu {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 82vh;
    padding: 140px 22px 50px;
  }

  .catalog-section {
    padding: 32px 20px;
  }

  .card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-panel {
    top: 110px;
    right: 16px;
  }

  .search-results {
    grid-template-columns: 1fr;
  }
}
.detail-actions-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: stretch;
}

.download-card,
.discord-card {
  background:
    linear-gradient(145deg, rgba(255, 30, 60, 0.10), rgba(0, 0, 0, 0.88)),
    rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(255, 30, 60, 0.28);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 0 35px rgba(255, 30, 60, 0.08);
}

.discord-card {
  position: relative;
  overflow: hidden;
}

.discord-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.25), transparent 55%);
  pointer-events: none;
}

.discord-card > * {
  position: relative;
  z-index: 1;
}

.discord-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(88, 101, 242, 0.18);
  border: 1px solid rgba(88, 101, 242, 0.55);
  color: #8ea1ff;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.discord-card h2,
.download-card h2 {
  margin-bottom: 10px;
}

.discord-card p,
.download-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.discord-stats {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.btn-discord {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5865f2, #ff1e3c);
  color: white;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(88, 101, 242, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(255, 30, 60, 0.45);
}

@media (max-width: 900px) {
  .detail-actions-grid {
    grid-template-columns: 1fr;
  }
}
.discord-members-box {
  margin: 18px 0;
  padding: 12px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 30, 60, 0.16), rgba(88, 101, 242, 0.10)),
    rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 30, 60, 0.28);
}

.discord-members-title {
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 9px;
  background: rgba(255, 30, 60, 0.72);
  color: white;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.discord-members-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-height: 180px;
  overflow: visible;
  padding-right: 4px;
}

.discord-member {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.discord-member img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(255, 30, 60, 0.75);
  object-fit: cover;
}

.discord-member span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}

.discord-loading {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}
.discord-member {
  position: relative;
  cursor: pointer;
}

.discord-profile-popover {
  position: absolute;
  left: -400%;
  bottom: calc(100% + 12px);
  width: 400px;
  max-width: 400px;
  padding: 14px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(34, 34, 45, 0.98), rgba(8, 8, 12, 0.98));
  border: 1px solid rgba(88, 101, 242, 0.45);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.55),
    0 0 22px rgba(88, 101, 242, 0.28);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 99;
}

.discord-member:hover .discord-profile-popover {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.discord-profile-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.discord-profile-header img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid rgba(255, 30, 60, 0.85);
}

.discord-profile-header strong {
  display: block;
  color: #fff;
  font-size: 15px;
  word-break: break-word;
  white-space: normal;
}

.discord-profile-header small {
  display: block;
  margin-top: 4px;
  color: #9ee6a8;
  font-size: 12px;
  font-weight: 800;
}

.discord-profile-body {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.discord-profile-body p {
  margin: 0 0 6px;
  color: #8ea1ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.discord-profile-body span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.4;
}
.discord-members-box {
  overflow: visible;
}

.discord-card {
  overflow: visible;
}

.discord-member:hover {
  z-index: 999;
}
.discord-profile-role {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--role-color) 22%, transparent);
  border: 1px solid var(--role-color);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.status-online {
  color: #62f29a !important;
}

.status-idle {
  color: #ffbf47 !important;
}

.status-dnd {
  color: #ff4d5e !important;
}

.status-offline {
  color: #9ca3af !important;
}
.discord-activity-text {
  display: grid;
  gap: 6px;
}

.discord-activity-time {
  display: block;
  color: #43b581;
  font-size: 13px;
  font-weight: 800;
}
.discord-profile-body .discord-activity-time {
  color: #43b581 !important;
}
.discord-activity-item {
  display: grid;
  gap: 5px;
  margin-bottom: 10px;
}

.discord-activity-item:last-child {
  margin-bottom: 0;
}
.spotify-rich {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 16px;
}

.spotify-cover {
  width: 110px;
  height: 110px;

  border-radius: 12px !important;

  object-fit: cover;

  border: none !important;

  box-shadow:
    0 0 20px rgba(67,181,129,.15);

  outline: none !important;
}

.spotify-rich-info {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.spotify-rich-info strong {
  color: #43b581;
  font-size: 13px;
}

.spotify-rich-info span {
  color: #fff;
  font-weight: 900;
  white-space: normal;
  overflow-wrap: anywhere;
}

.spotify-rich-info small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.spotify-rich-info em {
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
  font-size: 12px;
  line-height: 1.25;
}
.discord-member img.spotify-cover {
  width: 110px !important;
  height: 110px !important;
  min-width: 110px !important;

  border-radius: 12px !important;
  border: none !important;
  object-fit: cover;

  box-shadow: 0 0 20px rgba(67,181,129,.18);
}

.spotify-rich {
  grid-template-columns: 110px 1fr !important;
  gap: 16px !important;
  align-items: center;
}
.spotify-progress-wrap {
  display: grid;
  gap: 5px;
  margin-top: 6px;
}

.spotify-progress {
  width: 100%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.spotify-progress-bar {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: #43b581;
}

.spotify-progress-time {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}
.game-rich {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 16px;
}

.discord-member img.game-cover {
  width: 92px !important;
  height: 124px !important;

  min-width: 92px !important;

  border-radius: 12px !important;

  border: 1px solid rgba(255,255,255,.08) !important;

  object-fit: cover;

  box-shadow:
    0 0 20px rgba(255,30,60,.18);
}

.game-rich-info {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.game-rich-info strong {
  color: #ff1e3c;
  font-size: 13px;
}

.game-rich-info span {
  color: #fff;
  font-weight: 900;
}
.discord-member-since {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
}
.discord-profile-banner {
  width: calc(100% + 28px);
  height: 110px;
  margin: -14px -14px 14px;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.game-genres,
.game-year {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.game-year {
  color: rgba(255, 255, 255, 0.65);
}
.game-details {
  display: block;

  margin-top: 2px;
  margin-bottom: 4px;

  color: #7dd3fc;

  font-size: 12px;
  font-weight: 800;

  line-height: 1.35;

  text-shadow:
    0 0 8px rgba(125, 211, 252, .45),
    0 0 16px rgba(88, 101, 242, .28);

  animation: gameDetailsPulse 2.4s ease-in-out infinite;
}

@keyframes gameDetailsPulse {
  0%, 100% {
    opacity: .72;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(2px);
  }
}
.discord-custom-status {
  margin-top: 6px;
  max-width: 300px;

  color: #7dd3fc;

  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;

  white-space: normal;
  overflow-wrap: anywhere;

  text-shadow:
    0 0 8px rgba(125, 211, 252, .45),
    0 0 16px rgba(88, 101, 242, .28);

  animation: customStatusPulse 2.4s ease-in-out infinite;
}

@keyframes customStatusPulse {
  0%, 100% {
    opacity: .72;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(2px);
  }
}
.avatar-online {
  border-color: #22c55e !important;
  box-shadow: 0 0 14px rgba(34,197,94,.45);
}

.avatar-idle {
  border-color: #facc15 !important;
  box-shadow: 0 0 14px rgba(250,204,21,.45);
}

.avatar-dnd {
  border-color: #ef4444 !important;
  box-shadow: 0 0 14px rgba(239,68,68,.45);
}

.avatar-offline {
  border-color: #4b5563 !important;
  box-shadow: none;
}
/* PATCH WALLPAPER — mostrar imagem inteira no hero */
.hero {
  min-height: calc(100vh - 72px);
  margin-top: 72px;

  padding: 0 52px;

  background-size: 100% auto !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #070707;
}

/* mantém o conteúdo por cima sem empurrar a imagem */
.hero-content {
  padding-top: 0;
}
.detail-hero {
  min-height: calc(100vh - 72px);
  margin-top: 72px;

  background-size: 100% auto !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #070707;
}
#inicio,
#filmes,
#franquias,
#novidades {
  scroll-margin-top: 72px;
}
/* ==============================
   DOWNLOADS — ÁREA DE EPISÓDIOS
============================== */

#downloadArea {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.download-episode {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 30, 60, 0.22);
}

.download-episode h3 {
  margin: 0 0 18px;
  font-size: 24px;
  color: #fff;
}

.download-group {
  margin-top: 16px;
}

.download-group h4 {
  margin: 0 0 10px;
  color: #00bbff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.download-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
}

.download-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(1);
}

.download-card > p {
  color: rgba(255, 255, 255, 0.75);
}
.download-page-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.download-page-buttons a {
  width: 260px;
  text-align: center;
}