*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-main: #05030c;
  --bg-secondary: #12071f;
  --accent: #a855f7;
  --accent-soft: #6b21a8;
  --discord: #5865f2;
  --text-primary: #ffffff;
  --text-secondary: #b5b3c3;
  --pill-border: rgba(123, 248, 185, 0.3);
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #200b3a 0, #05030c 55%, #000 100%);
  color: var(--text-primary);
  min-height: 100vh;
}

/* HERO WRAPPER */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 24px 64px 32px;
  display: flex;
  flex-direction: column;
}

/* Lebegő háttér pill-ek */

.bg-pill {
  position: absolute;
  border-radius: 999px;
  border: 1px solid var(--pill-border);
  background: radial-gradient(
      circle at 20% 20%,
      rgba(87, 255, 149, 0.2),
      transparent 50%
    ),
    rgba(12, 242, 171, 0.02);
  filter: blur(0.2px);
  opacity: 0.35;
}

.pill-1 {
  width: 460px;
  height: 140px;
  left: -80px;
  top: 260px;
}

.pill-2 {
  width: 360px;
  height: 110px;
  right: 80px;
  top: 140px;
}

.pill-3 {
  width: 420px;
  height: 120px;
  right: -140px;
  bottom: 160px;
}

.pill-4 {
  width: 340px;
  height: 110px;
  left: 80px;
  bottom: 40px;
}

/* HEADER / LOGO */

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  z-index: 2;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: radial-gradient(circle at top, #22c55e 0, #4c1d95 45%, #020617 100%);
  box-shadow: 0 0 30px rgba(22, 163, 74, 0.7);
}

.logo-icon {
  font-size: 22px;
}

.logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* MAIN LAYOUT */

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  z-index: 2;
}

/* LEFT: CHARACTER */

.hero-left {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.character-image {
  max-height: 460px;
  height: 60vh;
  object-fit: contain;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.9));
}

/* RIGHT: TEXT CONTENT */

.hero-right {
  max-width: 520px;
}

.hero-title {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* TAGS */

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.tag {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #111827, #020617);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #e5e7eb;
  box-shadow: 0 0 16px rgba(15, 23, 42, 0.8);
}

/* DISCORD CTA BUTTON */

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(168, 85, 247, 0.7);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out,
    filter 0.15s ease-out;
}

.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(168, 85, 247, 0.9);
  filter: brightness(1.05);
}

.discord-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 32px rgba(88, 28, 135, 0.9);
}

.discord-icon {
  font-size: 18px;
  transform: translateY(1px);
}

/* FOOTER */

.footer {
  text-align: center;
  font-size: 12px;
  color: rgba(148, 163, 184, 0.7);
  margin-top: 24px;
  z-index: 2;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .character-image {
    height: 50vh;
    max-height: 380px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 16px 20px 24px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    max-width: 100%;
  }

  .tags {
    justify-content: center;
  }

  .hero-left {
    order: -1;
  }

  .character-image {
    height: 46vh;
  }
}
