
@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Inter:wght@300;400;600&display=swap');

:root {
  --bg-dark: #0a0a0a;
  --bg-card: rgba(17, 17, 17, 0.6);
  --bg-card-hover: rgba(30, 30, 30, 0.7);
  --bg-card-solid: #111111;
  --neon-green: #39ff14;
  --neon-purple: #bf00ff;
  --bone-white: #e8e0d4;
  --text-dim: #888888;
  --text-body: #cccccc;
  --accent-red: #ff1744;
  --border-dark: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(191, 0, 255, 0.25);
  --glass-bg: rgba(15, 15, 25, 0.65);
  --glass-border: rgba(191, 0, 255, 0.12);
}

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

/* ==========================================
   LAYERED GRADIENT BACKGROUND + GRUNGE TEXTURE
   ========================================== */
body {
  background-color: #050508;
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}

/* Deep radial gradient layer */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(100, 0, 180, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(191, 0, 255, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(57, 255, 20, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 60%, rgba(80, 0, 140, 0.1) 0%, transparent 40%);
  z-index: -2;
  pointer-events: none;
}

/* Subtle noise/grain texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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.04'/%3E%3C/svg%3E");
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

/* ==========================================
   TRANSPARENT STICKY NAV WITH BACKDROP BLUR
   ========================================== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 12, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0;
  transition: background 0.3s ease;
}

nav .nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
}

nav .logo {
  font-family: 'Creepster', cursive;
  font-size: 1.5rem;
  color: var(--neon-green);
  text-decoration: none;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.4), 0 0 30px rgba(57, 255, 20, 0.15);
  letter-spacing: 1px;
  transition: text-shadow 0.3s;
}

nav .logo:hover {
  text-shadow: 0 0 15px rgba(57, 255, 20, 0.6), 0 0 40px rgba(57, 255, 20, 0.25);
}

nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav .nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s, text-shadow 0.3s;
  font-weight: 400;
  position: relative;
}

nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-green);
  box-shadow: 0 0 6px var(--neon-green);
  transition: width 0.3s ease;
}

nav .nav-links a:hover::after,
nav .nav-links a.active::after {
  width: 100%;
}

nav .nav-links a:hover,
nav .nav-links a.active {
  color: var(--neon-green);
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--bone-white);
  transition: 0.3s;
}

/* MAIN */
main {
  padding-top: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 4rem;
}

/* ==========================================
   HERO — ANIMATED PURPLE FOG + SKULL WATERMARK
   ========================================== */
.hero {
  text-align: center;
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

/* Animated fog/mist gradient */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(191, 0, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(57, 255, 20, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(100, 0, 180, 0.1) 0%, transparent 40%);
  animation: fog-drift 12s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
}

@keyframes fog-drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3%, -2%) scale(1.05); }
  66% { transform: translate(-2%, 3%) scale(0.98); }
  100% { transform: translate(1%, -1%) scale(1.02); }
}

/* Faint skull watermark */
.hero::after {
  content: '💀';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15rem;
  opacity: 0.025;
  z-index: 0;
  pointer-events: none;
  filter: grayscale(1);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero .tagline {
  font-family: 'Creepster', cursive;
  font-size: 2.8rem;
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.4), 0 0 60px rgba(57, 255, 20, 0.15), 0 0 80px rgba(57, 255, 20, 0.05);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--bone-white);
  font-weight: 400;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
}

.hero .location {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero .sub-description {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

.hero .intro {
  max-width: 650px;
  margin: 2rem auto 0;
  font-size: 1rem;
  color: var(--text-body);
}

/* ==========================================
   SECTION HEADERS — NEON GLOW
   ========================================== */
section {
  margin: 3rem 0;
}

section h2 {
  font-family: 'Creepster', cursive;
  font-size: 1.8rem;
  color: var(--neon-purple);
  text-shadow: 0 0 15px rgba(191, 0, 255, 0.4), 0 0 40px rgba(191, 0, 255, 0.15);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

/* Subtle glow halo behind section headers */
section h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(191, 0, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

section h3 {
  font-size: 1.1rem;
  color: var(--bone-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

section p {
  margin-bottom: 1rem;
  color: var(--text-body);
}

.quote {
  font-style: italic;
  color: var(--neon-green);
  font-size: 1.3rem;
  text-align: center;
  padding: 2rem 0 1rem;
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.25);
}

/* ==========================================
   GLASSMORPHISM CARDS — RADIO, QUICK LINKS, BIO
   ========================================== */

/* RADIO */
.radio-section {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.radio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-green), var(--neon-purple), var(--neon-green), transparent);
  animation: glow-line 3s ease-in-out infinite;
}

@keyframes glow-line {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 23, 68, 0.12);
  color: var(--accent-red);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 23, 68, 0.2);
}

/* LIVE dot with flicker */
.radio-label .dot {
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-red), 0 0 12px rgba(255, 23, 68, 0.4);
  animation: live-flicker 2s infinite;
}

@keyframes live-flicker {
  0%,  100% { opacity: 1; box-shadow: 0 0 6px var(--accent-red), 0 0 12px rgba(255, 23, 68, 0.4); }
  40% { opacity: 1; }
  50% { opacity: 0.3; box-shadow: 0 0 2px var(--accent-red); }
  60% { opacity: 1; }
  70% { opacity: 0.8; }
  75% { opacity: 1; }
}

.radio-section .video-embed {
  margin: 1.5rem auto;
  max-width: 700px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(191, 0, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.radio-section .video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.radio-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* QUICK LINKS — glass cards */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: var(--bone-white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.quick-link:hover {
  background: rgba(30, 10, 45, 0.7);
  border-color: var(--neon-purple);
  box-shadow: 0 8px 30px rgba(191, 0, 255, 0.2), inset 0 1px 0 rgba(191, 0, 255, 0.1);
  transform: translateY(-3px);
}

.quick-link .icon {
  font-size: 1.3rem;
}

/* LINKS GRID — glass cards */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  color: var(--bone-white);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.link-card:hover {
  background: rgba(30, 10, 45, 0.7);
  border-color: var(--neon-green);
  box-shadow: 0 8px 30px rgba(57, 255, 20, 0.15), inset 0 1px 0 rgba(57, 255, 20, 0.08);
  transform: translateY(-3px);
}

.link-card .link-icon {
  font-size: 1.5rem;
  min-width: 30px;
  text-align: center;
}

.link-card .link-name {
  font-weight: 600;
}

.link-card .link-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ALBUM LIST */
.album-list {
  list-style: none;
  padding: 0;
}
.album-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-dark);
  color: var(--bone-white);
  font-style: italic;
}
.album-list li:last-child { border-bottom: none; }

/* STREAMING LINKS */
.stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.stream-link {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1px solid var(--neon-purple);
  color: var(--neon-purple);
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.stream-link:hover {
  background: var(--neon-purple);
  color: var(--bg-dark);
  box-shadow: 0 0 25px rgba(191, 0, 255, 0.35);
}

/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.video-placeholder {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.video-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* BIO CARD — glass */
.bio-section {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  margin: 1.5rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s;
}

.bio-section:hover {
  border-color: rgba(191, 0, 255, 0.25);
}

.bio-section h3 {
  color: var(--neon-green);
  margin-top: 0;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.2);
}

/* CTA BUTTON */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--neon-green), #00cc00);
  color: var(--bg-dark);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s;
  margin-top: 1rem;
}

.cta-button:hover {
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.45);
  transform: translateY(-2px);
}

/* ==========================================
   SCROLL-IN ANIMATIONS
   ========================================== */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for children */
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ==========================================
   FOOTER
   ========================================== */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 2rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  background: rgba(5, 5, 12, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

footer a {
  color: var(--neon-green);
  text-decoration: none;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: var(--text-dim);
  transition: color 0.3s, text-shadow 0.3s;
}

footer .footer-links a:hover {
  color: var(--neon-green);
  text-shadow: 0 0 6px rgba(57, 255, 20, 0.3);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
  nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 5, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--glass-border);
  }

  nav .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero .tagline {
    font-size: 2rem;
  }

  .hero::after {
    font-size: 8rem;
  }

  main {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

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

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

/* Instagram Gallery - responsive grid */
.ig-gallery {
  margin: 1.5rem 0;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
  padding: 0.5rem 0 1rem;
}
.ig-thumb {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  background-color: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(191, 0, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #e0e0e0;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ig-thumb:hover {
  border-color: var(--neon-purple);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(191, 0, 255, 0.3);
}
.ig-placeholder {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.5) 50%, rgba(15, 52, 96, 0.4) 100%);
}
.ig-placeholder span {
  font-size: 0.85rem;
  text-align: center;
  padding: 0.5rem;
  opacity: 0.8;
  font-family: 'Creepster', cursive;
  letter-spacing: 1px;
}
.ig-placeholder:hover {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(26, 16, 64, 0.6) 50%, rgba(42, 8, 69, 0.5) 100%);
}
@media (max-width: 600px) {
  .ig-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.5rem;
  }
}


/* ==========================================
   MERCH SECTION
   ========================================== */
.merch-section {
  text-align: center;
  padding: 3rem 2rem;
  margin: 2rem auto;
  max-width: 700px;
}

.merch-section .section-title {
  font-family: 'Creepster', cursive;
  font-size: 2rem;
  color: var(--neon-green);
  text-shadow: 0 0 15px rgba(57, 255, 20, 0.4), 0 0 40px rgba(57, 255, 20, 0.15);
  margin-bottom: 0.75rem;
}

.merch-desc {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.merch-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: 'Creepster', cursive;
  font-size: 1.4rem;
  color: #000;
  background: linear-gradient(135deg, var(--neon-green), #2ecc40);
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3), 0 0 60px rgba(57, 255, 20, 0.1);
}

.merch-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.5), 0 0 80px rgba(57, 255, 20, 0.2);
  color: #000;
}

/* Ko-fi Section */
.kofi-section {
  text-align: center;
  padding: 3rem 1rem;
  margin: 2rem auto;
  max-width: 600px;
}
.kofi-desc {
  color: #ccc;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.kofi-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #ff5e5b, #d94a47);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 94, 91, 0.3), 0 0 30px rgba(255, 94, 91, 0.1);
}
.kofi-btn:hover {
  background: linear-gradient(135deg, #ff7673, #e05a57);
  box-shadow: 0 0 25px rgba(255, 94, 91, 0.5), 0 0 50px rgba(255, 94, 91, 0.2);
  transform: translateY(-2px);
}

/* Ko-fi Card (Links page) */
.kofi-card {
  border-color: #ff5e5b !important;
}
.kofi-card:hover {
  box-shadow: 0 0 20px rgba(255, 94, 91, 0.3);
}


.merch-card {
  border: 1px solid rgba(57, 255, 20, 0.25) !important;
  background: rgba(57, 255, 20, 0.05) !important;
}

.merch-card:hover {
  border-color: rgba(57, 255, 20, 0.5) !important;
  box-shadow: 0 0 25px rgba(57, 255, 20, 0.15) !important;
}

/* Games Page */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  padding: 0 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.game-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.game-card:hover {
  border-color: rgba(0,255,136,0.4);
  box-shadow: 0 0 30px rgba(0,255,136,0.15);
  transform: translateY(-4px);
}
.game-thumb {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.game-title {
  font-family: 'Creepster', cursive;
  font-size: 1.8rem;
  color: #0f8;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(0,255,136,0.3);
}
.game-desc {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.play-btn {
  display: inline-block;
  padding: 0.6rem 2rem;
  background: linear-gradient(135deg, #0f8, #0a6);
  color: #000;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.game-card:hover .play-btn {
  box-shadow: 0 0 20px rgba(0,255,136,0.4);
}

/* Gallery image overlay text */
.ig-thumb {
  position: relative;
  overflow: hidden;
}
.ig-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  padding: 2rem 0.75rem 0.75rem;
  font-family: 'Creepster', cursive;
  font-size: 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
}
.ig-thumb:hover .ig-overlay {
  opacity: 1;
  transform: translateY(0);
}
