/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0b;
  --black-soft: #0f0f11;
  --black-card: #141417;
  --red: #c41e3a;
  --red-bright: #e63946;
  --red-glow: rgba(196, 30, 58, 0.5);
  --red-dim: #8b1528;
  --red-liquid: rgba(196, 30, 58, 0.25);
  --gray-border: #2a2a2e;
  --white: #f5f5f5;
  --white-dim: #9a9aa2;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ===== LIQUID BACKGROUND ===== */
.liquid-bg {
  position: fixed;
  inset: -50%;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: liquid 18s ease-in-out infinite;
}

.blob-1 {
  width: 80vmax;
  height: 80vmax;
  background: var(--red-liquid);
  left: -20%;
  top: -20%;
  animation-duration: 22s;
  animation-delay: 0s;
}

.blob-2 {
  width: 60vmax;
  height: 60vmax;
  background: rgba(139, 21, 40, 0.3);
  right: -15%;
  top: 10%;
  animation-duration: 20s;
  animation-delay: -5s;
}

.blob-3 {
  width: 50vmax;
  height: 50vmax;
  background: rgba(196, 30, 58, 0.2);
  left: 30%;
  bottom: -10%;
  animation-duration: 25s;
  animation-delay: -10s;
}

.blob-4 {
  width: 40vmax;
  height: 40vmax;
  background: rgba(230, 57, 70, 0.15);
  right: 20%;
  bottom: 20%;
  animation-duration: 19s;
  animation-delay: -7s;
}

@keyframes liquid {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(5%, -8%) scale(1.05);
  }
  50% {
    transform: translate(-8%, 5%) scale(0.95);
  }
  75% {
    transform: translate(10%, 10%) scale(1.02);
  }
}

/* ===== NOISE ===== */
.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ===== NAV ===== */
.nav {
  position: relative;
  z-index: 5;
  padding: 1.25rem 1.5rem;
}

.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.logo-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--red-bright);
  letter-spacing: 0.05em;
}

.logo-tagline {
  font-size: 0.8rem;
  color: var(--white-dim);
  font-weight: 500;
}

.nav-discord {
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dim) 100%);
  color: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 20px var(--red-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--red-glow);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 2;
  padding: 4rem 1.5rem;
  max-width: 560px;
  margin: 0 auto;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(20, 20, 23, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gray-border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(196, 30, 58, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(196, 30, 58, 0.06);
}

.hero-headline {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dim) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 8px 30px var(--red-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--red-glow);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 500px) {
  .hero-card {
    padding: 2rem 1.5rem;
  }
}
