body {
  margin: 0;
  background: #0a0a0f;
  color: #eaeaea;
  font-family: Arial, sans-serif;
}

/* NAV */
top-nav {
  position: fixed;
  top: 0;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 40px;
  box-sizing: border-box;

  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

header {
  padding: 20px 40px;
}

header h1 {
  font-size: 2.5rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
}

.logo {
  font-weight: bold;
  letter-spacing: 2px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #aaa;
  font-size: 0.9rem;
}

nav a:hover {
  color: #00f7ff;
  text-shadow: 0 0 8px #00f7ff;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 5rem;
  margin: 0;
  color: #ff2bd6;
  text-shadow: 0 0 10px #ff2bd6;
}

.hero-text p {
  margin-top: 10px;
  color: #aaa;
  letter-spacing: 3px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #222;
  color: #666;
}

/* ========================= */
/* 🌫️ BLOBBY MINI GAME AREA */
/* ========================= */

#blobArea {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 40px auto;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,79,216,0.3);

  overflow: hidden;

  /* 💧 goo effect */
  filter: url(#goo);
}

/* 🌊 LAVA BLOBS (FIXED) */
.blob {
  position: absolute;
  border-radius: 50%;
  width: 90px;
  height: 90px;

  /* keep this simple for proper merging */
  background: linear-gradient(135deg, #01F8FE, #AEFDFF, #DE9DFF);

  opacity: 0.95;

  /* ❌ IMPORTANT: remove blur (THIS was breaking everything) */
  filter: none;

  /* ❌ keep off for goo */
  mix-blend-mode: normal;

  box-shadow: none;

  transition: transform 0.2s ease-out;
}

/* optional highlight (kept but softened) */
.blob::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;

  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 55%);

  filter: blur(4px);
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;

  min-height: calc(100vh - 120px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#about {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px; /* ⬅️ push down from nav but still near top */
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin-top: 20px; /* small upward adjustment control */
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
}

/* image styling */
#about .about-image img {
  width: 220px;      /* ⬅️ bigger */
  height: auto;      /* keeps natural proportions */
  max-width: 90%;

  border-radius: 8px; /* ⬅️ rectangle (not circle) */
  border: 2px solid rgba(255, 79, 216, 0.4);

  margin-top: 20px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.gallery img {
  width: 100%;
  filter: brightness(0.9);
  transition: 0.3s;
}

.gallery img:hover {
  filter: brightness(1.2);
  transform: scale(1.02);
}

/* Video */
.video video {
  width: 100%;
  margin-top: 20px;
  border: 1px solid #333;
}

/* Mix embeds */
.mix iframe {
  width: 100%;
  height: 300px;
  margin-top: 20px;
  border: none;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.video-item iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (min-width: 800px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Zine */
.zine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.zine-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid #222;
}

.zine-item h3 {
  margin: 10px 0 5px;
}

.zine-item a {
  color: #00f7ff;
  text-decoration: none;
}

.zine-item a:hover {
  text-shadow: 0 0 8px #00f7ff;
}