:root {
  --bg-1: #040816;
  --bg-2: #0a1530;
  --panel: rgba(16, 24, 46, 0.72);
  --panel-strong: rgba(18, 28, 52, 0.92);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f3f6ff;
  --muted: rgba(233, 238, 255, 0.72);
  --accent: #7c4dff;
  --accent-2: #ff4d6d;
  --accent-3: #3b82f6;
  --success: #22c55e;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 77, 109, 0.18), transparent 16%),
    radial-gradient(circle at 85% 75%, rgba(124, 77, 255, 0.22), transparent 18%),
    radial-gradient(circle at 70% 25%, rgba(59, 130, 246, 0.16), transparent 14%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.26;
  pointer-events: none;
  z-index: 0;
}

body::before {
  left: -80px;
  top: 50px;
  background: #ff4d6d;
}

body::after {
  right: -70px;
  bottom: 40px;
  background: #5b7cff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(6, 11, 24, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.25);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.96rem;
}

.nav a:hover {
  color: white;
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 700;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}

.btn {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 34px rgba(124, 77, 255, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
}

.btn:hover,
.btn-secondary:hover,
.social-chip:hover,
.card-link:hover,
.platform:hover,
.stream-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.hero {
  padding: 72px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.section-card,
.stream-card,
.platform,
.about-box,
.faq-item {
  background: linear-gradient(180deg, rgba(26, 38, 70, 0.74), rgba(12, 19, 37, 0.88));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-copy {
  border-radius: var(--radius-xl);
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12);
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-copy p {
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 58ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
}

.stat strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-panel {
  border-radius: var(--radius-xl);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -24% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,77,255,0.28), transparent 65%);
  pointer-events: none;
}

.profile-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--panel-strong);
}

.profile-cover {
  height: 170px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.profile-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-body {
  padding: 0 20px 20px;
  margin-top: -44px;
}

.profile-avatar {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid rgba(15, 22, 41, 0.94);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
  background: #0f1629;

  position: relative;
  z-index: 10; /* 🔥 IMPORTANTE */
}

.profile-name {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.profile-name h2 {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.profile-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.profile-tags span:hover {
  background: rgba(124, 77, 255, 0.25);
  border-color: rgba(124, 77, 255, 0.5);
}

.profile-role {
  color: var(--muted);
  margin-top: 4px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #b8ffcf;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.profile-text {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.social-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  font-weight: 700;
  transition: transform .2s ease, filter .2s ease;
}

.social-chip svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

section {
  padding: 22px 0;
}

.banner-section {
  padding-top: 10px;
}

.main-banner {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.main-banner img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.main-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(5,10,22,0.08), rgba(5,10,22,0.82));
}

.banner-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.84rem;
  font-weight: 700;
}

.main-banner-overlay h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.main-banner-overlay p {
  max-width: 62ch;
  color: rgba(255,255,255,0.86);
  line-height: 1.7;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-header-mini {
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.section-header p {
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.7;
}

.stream-grid,
.platform-grid,
.about-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.stream-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stream-card {
  border-radius: 24px;
  padding: 22px;
}

.stream-card .mini {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.08);
}

.stream-card h3,
.platform h3,
.about-box h3,
.faq-item h3 {
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.stream-card p,
.platform p,
.about-box p,
.faq-item p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.platform-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.platform {
  border-radius: 24px;
  padding: 20px;
  transition: transform .2s ease, filter .2s ease;
}

.platform-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
}

.platform small {
  display: inline-block;
  margin-top: 12px;
  color: white;
  font-weight: 700;
}

.twitch-bg { background: linear-gradient(180deg, rgba(124,77,255,0.26), rgba(18,28,52,0.92)); }
.youtube-bg { background: linear-gradient(180deg, rgba(255,72,72,0.24), rgba(18,28,52,0.92)); }
.tiktok-bg { background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(18,28,52,0.92)); }
.discord-bg { background: linear-gradient(180deg, rgba(88,101,242,0.24), rgba(18,28,52,0.92)); }

.about-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.about-box {
  border-radius: 24px;
  padding: 24px;
}

.about-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.about-item {
  display: flex;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.about-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.about-item strong {
  display: block;
  margin-bottom: 4px;
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(34, 197, 94, 0.14);
  color: #b8ffcf;
  font-weight: 900;
  margin-top: 2px;
}

.schedule {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  font-weight: 700;
}

.schedule-item span {
  color: var(--muted);
  font-weight: 600;
}

.cta-banner {
  margin: 22px 0 10px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(130deg, rgba(124,77,255,0.94), rgba(255,77,109,0.82)),
    url('static/cta-banner.jpg') center/cover no-repeat;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 10, 24, 0.32), rgba(7, 10, 24, 0.08));
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 10px;
}

.cta-banner p {
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 58ch;
}

.card-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 800;
  transition: transform .2s ease, filter .2s ease;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  border-radius: 22px;
  padding: 20px;
}

footer {
  padding: 16px 0 38px;
}

.footer-box {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .cta-banner-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .stream-grid {
    grid-template-columns: 1fr 1fr;
  }

  .platform-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 38px;
  }

  .container {
    width: min(calc(100% - 20px), var(--max));
  }

  .hero-copy,
  .hero-panel,
  .stream-card,
  .platform,
  .about-box,
  .faq-item {
    padding: 18px;
    border-radius: 22px;
  }

  .stats,
  .stream-grid,
  .platform-grid,
  .faq-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .cta-row,
  .topbar-inner,
  .footer-box,
  .section-header,
  .cta-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .socials-mobile-hide {
    display: none;
  }

  .btn,
  .btn-secondary,
  .card-link {
    width: 100%;
  }

  .profile-name {
    flex-direction: column;
    align-items: start;
  }

  .schedule-item,
  .footer-box {
    flex-direction: column;
    align-items: start;
  }

  .main-banner,
  .main-banner img {
    min-height: 240px;
  }

  .main-banner-overlay {
    padding: 22px;
  }

  h1 {
    font-size: 2.45rem;
  }
}
