/* =========================
   FONTS
========================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap');


/* =========================
   ACCENT SYSTEM
========================= */

:root {
  --accent: 255,0,0;
  --accent-rgb: rgb(var(--accent));
  --bg: #050505;
  --surface: #0f0f0f;
  --border: rgba(255,255,255,.07);
  --text: #fff;
  --muted: rgba(255,255,255,.45);
}


/* =========================
   RESET & BASE
========================= */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* =========================
   NAV HEADER
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(5,5,5,.95), transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-link {
  font-size: .72rem;
  letter-spacing: 2px;
  opacity: .45;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity .2s;
}

.nav-link:hover { opacity: 1; }

@media (max-width: 480px) {
  .nav-links { gap: 16px; }
  .nav-link  { font-size: .65rem; letter-spacing: 1.5px; }
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--text);
  text-decoration: none;
  opacity: .9;
  transition: opacity .2s;
}

.logo:hover { opacity: 1; }


/* =========================
   PAGE CONTAINER
========================= */

.page {
  width: 100%;
  max-width: 680px;
  padding: 100px 20px 60px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.homepage .page {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}


/* =========================
   LOGO
========================= */

.main-logo {
  width: min(200px, 52vw);
  display: block;
  margin: 0 auto 20px;
  animation:
    logoFloat 6s ease-in-out infinite,
    logoRock  8s ease-in-out infinite;
  filter:
    drop-shadow(0 10px 26px rgba(0,0,0,.65))
    drop-shadow(0 0 28px rgba(var(--accent),.35));
}

@keyframes logoFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes logoRock {
  0%,100% { transform: rotate(0deg); }
  25%      { transform: rotate(-1.4deg); }
  75%      { transform: rotate(1.4deg); }
}


/* =========================
   TAGLINE
========================= */

.intro {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 4px;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 36px;
}


/* =========================
   ARTIST GRID (homepage)
========================= */

.artist-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 40px);
  margin-top: 8px;
  width: 100%;
}

.artist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  gap: 10px;
}

.artist-img {
  width: clamp(72px, 14vw, 110px);
  height: clamp(72px, 14vw, 110px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.85);
  box-shadow: 0 0 0 3px rgba(0,0,0,.55);
  transition: transform .25s ease, filter .25s ease, box-shadow .25s ease;
  display: block;
}

.artist-card:hover .artist-img {
  transform: translateY(-6px) scale(1.04);
  filter: drop-shadow(0 0 14px rgba(var(--accent),.9));
  box-shadow: 0 0 0 3px rgba(0,0,0,.55), 0 12px 30px rgba(0,0,0,.5);
}

.artist-name {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-align: center;
  color: var(--muted);
  text-transform: uppercase;
  transition: color .2s;
}

.artist-card:hover .artist-name {
  color: var(--text);
}


/* =========================
   SOCIAL HUB (homepage)
========================= */

.social-hub {
  margin-top: 48px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 28px);
  padding: 0 20px;
}

.social-icons img {
  width: clamp(20px, 4vw, 26px);
  height: clamp(20px, 4vw, 26px);
  display: block;
  filter: invert(1);
  opacity: .6;
  transition: opacity .2s, transform .2s;
}

.social-icons a:hover img {
  opacity: 1;
  transform: scale(1.15) translateY(-2px);
}


/* =========================
   DISCORD
========================= */

.community {
  margin: 52px auto 0;
  text-align: center;
  width: 100%;
  max-width: 480px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.community-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .85rem;
  letter-spacing: 4px;
  color: var(--muted);
  margin-bottom: 16px;
}

.community iframe {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(0,0,0,.5);
}


/* =========================
   EMAIL SIGNUP
========================= */

.email-signup {
  margin: 52px auto 0;
  text-align: center;
  width: 100%;
  max-width: 420px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.email-signup h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 400;
}

#signupForm {
  display: flex;
  gap: 8px;
  width: 100%;
}

#signupForm input[type="email"] {
  flex: 1;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  outline: none;
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-family: inherit;
  font-size: .88rem;
  transition: border-color .2s;
  min-width: 0;
}

#signupForm input[type="email"]:focus {
  border-color: rgba(var(--accent), .5);
}

#signupForm button {
  padding: 11px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: rgb(var(--accent));
  color: #000;
  font-weight: 700;
  font-family: inherit;
  font-size: .82rem;
  letter-spacing: .5px;
  white-space: nowrap;
  transition: opacity .2s, transform .1s;
  flex-shrink: 0;
}

#signupForm button:hover  { opacity: .85; }
#signupForm button:active { transform: scale(.97); }

#signupMessage {
  margin-top: 10px;
  font-size: .78rem;
  color: var(--muted);
  min-height: 18px;
}

#signupMessage a {
  color: rgb(var(--accent));
  text-decoration: none;
}


/* =========================
   FOOTER
========================= */

.footer {
  width: 100%;
  margin: 48px auto 28px;
  text-align: center;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: 2px;
  position: relative;
  z-index: 3;
}


/* =========================
   ARTIST PAGE
========================= */

.artist-page .page {
  display: block;
  text-align: center;
  padding-top: 110px;
}

.artist-header {
  margin-bottom: 32px;
}

.artist-avatar {
  width: clamp(120px, 32vw, 170px);
  height: clamp(120px, 32vw, 170px);
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: 3px solid rgba(255,255,255,.85);
  box-shadow:
    0 0 0 6px rgba(0,0,0,.55),
    0 0 30px rgba(var(--accent),.35);
  transition: .35s ease;
}

.artist-avatar:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 0 6px rgba(0,0,0,.6),
    0 0 50px rgba(var(--accent),.55);
}

.artist-title {
  font-family: 'Bebas Neue', sans-serif;
  margin-top: 16px;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  letter-spacing: 4px;
  font-weight: 400;
}


/* =========================
   ARTIST SECTIONS
========================= */

.section {
  margin: 32px auto;
  max-width: 560px;
  width: 100%;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .8rem;
  letter-spacing: 4px;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 400;
}

.embed {
  width: 100%;
  border: none;
  border-radius: 12px;
  display: block;
}


/* =========================
   ARTIST SOCIALS
========================= */

.artist-socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(12px, 3vw, 22px);
  margin-top: 8px;
}

.artist-socials a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  transition: background .2s, transform .2s, border-color .2s;
}

.artist-socials a:hover {
  background: rgba(var(--accent), .1);
  border-color: rgba(var(--accent), .3);
  transform: translateY(-3px);
}

.artist-socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(1);
  opacity: .8;
  transition: opacity .2s, filter .2s;
}

.artist-socials a:hover img {
  opacity: 1;
  filter:
    invert(1)
    drop-shadow(0 0 6px rgba(var(--accent),.8));
}


/* =========================
   LAVA LAMP
========================= */

.lava-lamp {
  position: fixed;
  inset: 0;
  pointer-events: none;
  filter: url(#goo) contrast(170%) brightness(1.05);
  mix-blend-mode: screen;
  z-index: 1;
  opacity: .95;
}

.blob {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%,
    rgba(var(--accent),0.92) 0%,
    rgba(var(--accent),0.70) 30%,
    rgba(var(--accent),0.40) 55%,
    rgba(var(--accent),0.14) 75%,
    transparent 88%);
  box-shadow:
    inset -30px -40px 60px rgba(0,0,0,.25),
    inset 15px 25px 40px rgba(255,255,255,.08);
  animation:
    rise    linear      infinite,
    wobble  8s ease-in-out infinite,
    lavaPulse 7s ease-in-out infinite;
  will-change: transform;
}

@keyframes lavaPulse {
  0%,100% { filter: brightness(1); }
  50%      { filter: brightness(1.18); }
}

@keyframes wobble {
  0%,100% { border-radius:50%; }
  25%      { border-radius:46% 54% 52% 48%/52% 48% 55% 45%; }
  50%      { border-radius:54% 46% 48% 52%/48% 55% 45% 52%; }
  75%      { border-radius:49% 51% 55% 45%/54% 46% 52% 48%; }
}

@keyframes rise {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-140vh) scale(1.25); }
}

.b1 { width:clamp(160px,22vw,280px); height:clamp(160px,22vw,280px); left:18%; bottom:-150px; animation-duration:22s; }
.b2 { width:clamp(140px,18vw,240px); height:clamp(140px,18vw,240px); left:55%; bottom:-120px; animation-duration:28s; }
.b3 { width:clamp(180px,26vw,320px); height:clamp(180px,26vw,320px); left:48%; bottom:-260px; animation-duration:26s; }
.b4 { width:clamp(120px,16vw,200px); height:clamp(120px,16vw,200px); left:75%; bottom:-100px; animation-duration:18s; }
.b5 { width:clamp(150px,20vw,260px); height:clamp(150px,20vw,260px); left:8%;  bottom:-180px; animation-duration:30s; }

.blob.stretch { filter: brightness(1.25); }


/* =========================
   MOBILE — 480px and under
========================= */

@media (max-width: 480px) {

  .site-header { padding: 14px 16px; }
  .logo { font-size: 1.2rem; }

  .page { padding: 90px 16px 50px; }

  .main-logo { width: 46vw; }

  .intro { font-size: .85rem; letter-spacing: 3px; }

  .artist-grid { gap: 20px; }

  .artist-img {
    width: 68px;
    height: 68px;
  }

  .artist-name { font-size: .72rem; }

  .social-icons { gap: 18px; }
  .social-icons img { width: 20px; height: 20px; }

  .community { padding: 0 16px; }
  .community iframe { height: 360px; }

  .email-signup { padding: 0 16px; }

  #signupForm {
    flex-direction: column;
  }

  #signupForm input[type="email"],
  #signupForm button {
    width: 100%;
  }

  /* Artist page */
  .artist-page .page { padding-top: 90px; }

  .artist-title { font-size: 1.8rem; letter-spacing: 3px; }

  .section { margin: 24px auto; }

  .artist-socials { gap: 10px; }
  .artist-socials a { width: 40px; height: 40px; }
  .artist-socials img { width: 16px; height: 16px; }
}


/* =========================
   TABLET — 481–768px
========================= */

@media (min-width: 481px) and (max-width: 768px) {

  .page { padding: 100px 24px 50px; }

  .artist-grid { gap: 28px; }

  .community iframe { height: 380px; }
}


/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(var(--accent),.4); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: rgba(var(--accent),.7); }


/* =========================
   SELECTION
========================= */

::selection {
  background: rgba(var(--accent), .3);
  color: var(--text);
}


/* =========================
   LEGACY — kept for compat
========================= */

.hp-field { display: none; }
#signup-form { display: none; }
#signup-message { display: none; }
