* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #050008;
  --bg-2: #0a0012;
  --purple: #7a00ff;
  --purple-2: #b900ff;
  --purple-3: #d991ff;
  --text: #ffffff;
  --muted: #d8c9e9;
  --line: rgba(190, 90, 255, 0.22);
  --glass: rgba(15, 0, 28, 0.78);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
.brand span,
.tag,
.section-header span,
.cta span,
.social-btn,
.link-card strong {
  font-family: 'Oxanium', sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 18% 8%, rgba(185, 0, 255, 0.36), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(105, 0, 255, 0.28), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(145, 0, 255, 0.22), transparent 35%),
    linear-gradient(135deg, rgba(5, 0, 12, 0.98), rgba(18, 0, 34, 0.96), rgba(0, 0, 0, 0.98));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(170, 70, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170, 70, 255, 0.22) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 0 52%, transparent 78%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  padding: 16px 24px;
  background: rgba(5, 0, 12, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(190, 90, 255, 0.18);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 92px;
}

.brand img {
  width: 118px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(170, 55, 255, 0.55));
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu a {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  color: #d7c4ec;
  transition: 0.25s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--purple-3));
  transition: width 0.25s ease;
}

.menu a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(180, 80, 255, 0.9);
}

.menu a:hover::after {
  width: 100%;
}

.menu-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6f00ff, #b000ff);
  box-shadow: 0 0 22px rgba(145, 0, 255, 0.45);
}

.menu .menu-cta::after {
  display: none;
}

/* HERO */

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 140px 22px 80px;
  text-align: center;
}

.hero-content {
  max-width: 850px;
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(183, 55, 255, 0.28), transparent 68%);
  filter: blur(10px);
  z-index: -1;
}

.tag {
  display: inline-block;
  margin-bottom: 24px;
  padding: 10px 18px;
  border: 1px solid rgba(200, 120, 255, 0.42);
  border-radius: 999px;
  background: rgba(145, 0, 255, 0.12);
  color: #d9b2ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.hero-logo {
  width: min(360px, 86vw);
  height: auto;
  display: block;
  margin: 0 auto 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 36px rgba(165, 55, 255, 0.85));
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 22px rgba(170, 60, 255, 0.7));
  }

  50% {
    transform: translateY(-10px);
    filter: drop-shadow(0 0 36px rgba(190, 90, 255, 1));
  }
}

.hero h1 {
  font-size: clamp(52px, 10vw, 112px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 8px;
  text-shadow:
    0 0 25px rgba(185, 80, 255, 0.9),
    0 0 60px rgba(120, 0, 255, 0.8);
}

.hero p {
  max-width: 690px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: 0.4px;
  transition: 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #7100ff, #b900ff);
  box-shadow: 0 0 30px rgba(160, 35, 255, 0.55);
}

.btn.secondary {
  border: 1px solid rgba(220, 160, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 0 34px rgba(190, 80, 255, 0.82);
}

/* SECTIONS */

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 22px;
}

.section.dark {
  max-width: 100%;
  padding-left: 22px;
  padding-right: 22px;
  background:
    radial-gradient(circle at 50% 0, rgba(160, 45, 255, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(120, 0, 255, 0.08), rgba(0, 0, 0, 0));
}

.section.dark .section-header,
.section.dark .grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  margin-bottom: 42px;
}

.section-header span,
.cta span {
  color: #bd72ff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
}

.section-header h2,
.cta h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 800;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.player-card,
.link-card,
.cta-box {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(25, 0, 45, 0.9), rgba(8, 0, 15, 0.84));
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.card {
  padding: 32px;
}

.card::before,
.player-card::before,
.link-card::before,
.cta-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(200, 110, 255, 0.28), transparent 38%, rgba(120, 0, 255, 0.2));
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

.card:hover::before,
.player-card:hover::before,
.link-card:hover::before,
.cta-box:hover::before {
  opacity: 1;
}

.card h3 {
  position: relative;
  font-size: 24px;
  margin-bottom: 12px;
}

.card p {
  position: relative;
  color: #cab9dc;
  line-height: 1.7;
}

/* PLAYERS PREMIUM */

.players {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.player-card {
  padding: 34px 24px 30px;
  text-align: center;
  min-height: 390px;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.player-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  top: -76px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(184, 68, 255, 0.48), transparent 68%);
  filter: blur(12px);
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
}

.player-card:hover {
  transform: translateY(-10px);
  border-color: rgba(215, 145, 255, 0.55);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(160, 35, 255, 0.46);
}

.featured-player {
  border-color: rgba(217, 145, 255, 0.38);
}

.player-avatar {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  padding: 7px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(142, 0, 255, 0.92), rgba(225, 100, 255, 0.7));
  box-shadow:
    0 0 24px rgba(170, 55, 255, 0.9),
    0 0 70px rgba(120, 0, 255, 0.42);
  animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
  0%, 100% {
    box-shadow:
      0 0 24px rgba(170, 55, 255, 0.75),
      0 0 60px rgba(120, 0, 255, 0.35);
  }

  50% {
    box-shadow:
      0 0 34px rgba(210, 115, 255, 1),
      0 0 90px rgba(150, 20, 255, 0.6);
  }
}

.player-avatar::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 42px;
  border: 1px solid rgba(215, 145, 255, 0.36);
  background: linear-gradient(135deg, rgba(170, 60, 255, 0.18), transparent 55%);
  pointer-events: none;
  z-index: -1;
}

.player-avatar::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 48px;
  background:
    conic-gradient(
      from 0deg,
      transparent,
      rgba(190, 70, 255, 0.7),
      transparent,
      rgba(120, 0, 255, 0.5),
      transparent
    );
  opacity: 0;
  filter: blur(10px);
  z-index: -2;
  transition: 0.35s ease;
  animation: rotateGlow 6s linear infinite;
}

.player-card:hover .player-avatar::after {
  opacity: 1;
}

@keyframes rotateGlow {
  to {
    transform: rotate(360deg);
  }
}

.player-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 27px;
  background: radial-gradient(circle at top, rgba(90, 0, 170, 0.55), rgba(5, 0, 12, 0.98));
  filter: contrast(1.08) saturate(1.12);
}

.player-card h3,
.player-card p,
.player-card small,
.player-socials {
  position: relative;
  z-index: 2;
}

.player-card h3 {
  font-size: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(180, 70, 255, 0.62);
}

.player-card p {
  display: inline-block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(122, 0, 255, 0.18);
  border: 1px solid rgba(190, 90, 255, 0.34);
}

.player-card small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 8px 13px;
  color: #d9b2ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  border: 1px solid rgba(180, 90, 255, 0.35);
  border-radius: 999px;
  background: rgba(10, 0, 20, 0.62);
}

.player-card small::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #7cffb2;
  box-shadow: 0 0 12px rgba(124, 255, 178, 0.9);
}

.player-socials {
  width: 100%;
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  min-width: 118px;
  min-height: 44px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 14px;
  border: 1px solid rgba(215, 145, 255, 0.32);
  background:
    linear-gradient(135deg, rgba(122, 0, 255, 0.82), rgba(185, 0, 255, 0.48)),
    rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(150, 35, 255, 0.28);
  backdrop-filter: blur(12px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.social-btn i {
  font-size: 17px;
  color: #f1dcff;
  filter: drop-shadow(0 0 8px rgba(217, 145, 255, 0.75));
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(235, 190, 255, 0.72);
  box-shadow: 0 0 30px rgba(190, 80, 255, 0.78);
}

.social-btn.twitch:hover {
  background: linear-gradient(135deg, #9146ff, #6f00ff);
}

.social-btn.tiktok:hover {
  background: linear-gradient(135deg, #6f00ff, #c000ff);
}

.social-btn.youtube:hover {
  background: linear-gradient(135deg, #8d00ff, #ff1744);
}

.social-btn.instagram:hover {
  background: linear-gradient(135deg, #6f00ff, #dd2a7b, #f58529);
}

/* LINKS */

.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.link-card {
  min-height: 160px;
  padding: 26px;
  transition: 0.25s ease;
}

.link-card strong,
.link-card span {
  position: relative;
  display: block;
}

.link-card strong {
  font-size: 22px;
  margin-bottom: 12px;
}

.link-card span {
  color: #c8b7dd;
  line-height: 1.5;
}

.link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(160, 35, 255, 0.5);
}

/* CTA */

.cta {
  padding: 70px 22px 100px;
}

.cta-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 36px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(180, 70, 255, 0.34), transparent 42%),
    linear-gradient(145deg, rgba(28, 0, 50, 0.92), rgba(8, 0, 16, 0.95));
}

.cta h2,
.cta p,
.cta a,
.cta span {
  position: relative;
}

.cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.cta p {
  max-width: 650px;
  margin: 18px auto 30px;
  color: #d5c5e8;
  line-height: 1.7;
}

/* FOOTER */

.footer {
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(180, 80, 255, 0.16);
  background: rgba(0, 0, 0, 0.35);
}

.footer img {
  max-width: 120px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.footer p {
  color: #947aa8;
  font-size: 13px;
}

/* RESPONSIVO */

@media (max-width: 1024px) {
  .players {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .grid.three,
  .players,
  .links-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: 5px;
  }

  .section {
    padding: 76px 20px;
  }

  .player-card {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .header {
    padding: 14px 16px;
  }

  .brand img {
    width: 96px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-logo {
    width: min(280px, 88vw);
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 62px);
    letter-spacing: 3px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .card,
  .player-card,
  .link-card {
    padding: 26px;
  }

  .cta-box {
    padding: 42px 24px;
  }

  .player-card {
    min-height: 375px;
    border-radius: 24px;
  }

  .player-avatar {
    width: 136px;
    height: 136px;
    border-radius: 30px;
  }

  .player-avatar img {
    border-radius: 23px;
  }

  .player-card h3 {
    font-size: 23px;
  }

  .social-btn {
    flex: 1 1 120px;
  }
}
