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

:root {
  --bg: #050816;
  --card: rgba(10, 18, 38, 0.78);
  --card-border: rgba(84, 170, 255, 0.24);
  --blue: #36a3ff;
  --blue-strong: #5865f2;
  --gold: #f7c948;
  --green: #25d366;
  --text: #ffffff;
  --muted: #b8c7dc;
  --shadow: rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.page-bg,
.grid-overlay,
.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-bg {
  z-index: -3;
  background:
    radial-gradient(circle at top, rgba(44, 132, 255, 0.18), transparent 35%),
    linear-gradient(135deg, #050816 0%, #08142d 50%, #050816 100%);
}

.grid-overlay {
  z-index: -2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(54, 163, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 163, 255, 0.24) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), transparent 80%);
}

.glow {
  z-index: -1;
  filter: blur(70px);
  opacity: 0.55;
}

.glow-blue {
  width: 360px;
  height: 360px;
  top: 15%;
  left: 8%;
  background: rgba(54, 163, 255, 0.5);
}

.glow-gold {
  width: 260px;
  height: 260px;
  right: 8%;
  bottom: 15%;
  background: rgba(247, 201, 72, 0.28);
}

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(84, 170, 255, 0.18);
  background: rgba(5, 10, 25, 0.55);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  box-shadow: 0 20px 50px var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.brand-logo-small {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--gold);
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 44px auto 0;
  padding-bottom: 40px;
}

.hero-card {
  position: relative;
  padding: 56px 26px;
  text-align: center;
  border: 1px solid var(--card-border);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(15, 31, 65, 0.82), rgba(7, 12, 28, 0.86)),
    radial-gradient(circle at top, rgba(54, 163, 255, 0.16), transparent 45%);
  box-shadow:
    0 30px 90px var(--shadow),
    inset 0 0 30px rgba(54, 163, 255, 0.08);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-100%);
  animation: scan 5s infinite;
}

@keyframes scan {
  0%, 35% { transform: translateX(-100%); }
  65%, 100% { transform: translateX(100%); }
}

.logo-frame {
  width: 230px;
  height: 230px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(54, 163, 255, 0.22), rgba(5, 8, 22, 0.5)),
    linear-gradient(135deg, rgba(247,201,72,0.65), rgba(54,163,255,0.45));
  padding: 5px;
  box-shadow: 0 0 40px rgba(54, 163, 255, 0.35);
}

.main-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

h1 span {
  color: var(--gold);
  text-shadow: 0 0 22px rgba(247, 201, 72, 0.38);
}

.subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.65;
}

.actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  min-width: 210px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-discord {
  background: linear-gradient(135deg, #5865f2, #3544d8);
  box-shadow: 0 14px 30px rgba(88, 101, 242, 0.32);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #118c44);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.26);
}

.hint {
  margin-top: 18px;
  color: rgba(184, 199, 220, 0.65);
  font-size: 13px;
}

.info-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.coming-soon {
  border: 1px solid rgba(84, 170, 255, 0.18);
  border-radius: 24px;
  background: rgba(8, 16, 34, 0.68);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px var(--shadow);
}

.info-card {
  padding: 26px;
}

.icon {
  font-size: 32px;
}

.info-card h2,
.coming-soon h2 {
  margin-top: 14px;
  font-family: "Orbitron", sans-serif;
  font-size: 19px;
}

.info-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.coming-soon {
  margin-top: 18px;
  padding: 28px;
  text-align: center;
}

.soon-list {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.soon-list span {
  padding: 10px 14px;
  border: 1px solid rgba(247, 201, 72, 0.22);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(247, 201, 72, 0.06);
}

.footer {
  padding: 24px 16px 36px;
  text-align: center;
  color: rgba(184, 199, 220, 0.72);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 30px);
  padding: 14px 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 8, 22, 0.92);
  border: 1px solid rgba(37, 211, 102, 0.35);
  box-shadow: 0 20px 50px var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    margin-top: 26px;
  }

  .hero-card {
    padding: 38px 18px;
    border-radius: 24px;
  }

  .logo-frame {
    width: 180px;
    height: 180px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}
