/* ── TOKENS ── */
:root {
  --pink:    #ff4fa3;
  --yellow:  #ffe246;
  --blue:    #3ad6ff;
  --dark:    #06040a;
  --darker:  #030206;
  --pad-x:   clamp(16px, 5vw, 80px);
  --pad-y:   clamp(72px, 10vw, 120px);
  --radius:  999px;
}

@font-face {
    font-family: 'BobaMilky';
    src: url('/fonts/BobaMilky.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark); color: #fff;
  overflow-x: clip; font-family: 'Pixelify Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── HERO BACKGROUNDS ── */
.hero {
  position: relative; width: 100%; min-height: 100vh; isolation: isolate;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 16px 80px; overflow: hidden;
}

.bg-noise {
  position: absolute; inset: 0; z-index: 1;
  background-image: url('https://www.transparenttextures.com/patterns/retina-dust.png');
  background-repeat: repeat; mix-blend-mode: normal; opacity: 0.14; pointer-events: none;
}

.bg-art {
  position: absolute; inset: 0;
  background: url('/images/PinPowartnotitle.png') center / cover;
  opacity: .25; z-index: 2;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 20%, transparent 80%);
}

.bg-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(70vw, 900px); height: min(70vw, 900px);
  background: radial-gradient(circle, rgba(255,79,163,.05) 0%, transparent 65%);
  pointer-events: none; z-index: 3;
}

/* ── NAV ── */
nav {
  position: fixed; top: 12px; left: 50%; transform: translateX(-50%); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: min(1000px, calc(100vw - 24px)); padding: 10px 14px;
  background: rgba(6,4,10,.65); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.05);
  visibility: hidden;
}
.nav-left, .nav-right { flex: 1; display: flex; align-items: center; min-width: 0; }
.nav-left  { justify-content: flex-start; }
.nav-right { justify-content: flex-end; }

.nav-socials { display: flex; gap: 16px; align-items: center; padding-left: 8px; }
.nav-socials svg { width: 18px; height: 18px; fill: rgba(255,255,255,.5); transition: fill .3s, transform .3s; }
.nav-socials a:hover svg { fill: #fff; transform: translateY(-2px); }

.nav-links {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(14px, 2vw, 28px); list-style: none;
}
.nav-links a {
  font-weight: 600; color: rgba(255,255,255,.7); font-size: clamp(.9rem, 1.1vw, 1.05rem);
  text-transform: uppercase; letter-spacing: 1.5px; white-space: nowrap;
  position: relative; transition: color .3s;
}
.nav-links a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,.3); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--pink); transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--pink); color: #fff; padding: 10px 20px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; text-transform: uppercase; letter-spacing: 1.2px;
  box-shadow: 0 4px 15px rgba(255,79,163,.3); transition: transform .2s, box-shadow .2s;
}
.nav-cta svg { width: 16px; height: 16px; fill: #fff; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,79,163,.6); }

/* ── HERO ELEMENTS ── */
.center-stage {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  width: min(640px, calc(100vw - 32px));
  perspective: 1200px; margin-top: -10px;
}

.floating-logo {
  width: min(320px, 35vw); min-width: 140px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.8));
  margin-bottom: 24px; visibility: hidden; will-change: transform, opacity;
}

.video-wrapper {
  width: 100%; aspect-ratio: 16/9; border-radius: 20px;
  overflow: hidden; background: #000; position: relative; z-index: 10;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 30px 60px rgba(0,0,0,.8), 0 0 0 1px rgba(255,79,163,.4), 0 0 40px rgba(255,79,163,.15);
  visibility: hidden; will-change: transform, opacity; transform-style: preserve-3d;
}
.video-wrapper video { width: 100%; height: 100%; object-fit: cover; }

.hero-ctas {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  margin: 32px 0; z-index: 15; visibility: hidden;
}

.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Pixelify Sans', sans-serif; font-weight: 600;
  font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1.2px;
  min-height: 48px; padding: 10px 24px; border-radius: var(--radius);
  cursor: pointer; white-space: nowrap; transition: all .3s;
}
:is(.btn-primary, .btn-secondary) svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

.btn-primary { background: var(--pink); color: #fff; border: none; box-shadow: 0 6px 20px rgba(255,79,163,.35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,79,163,.6); }
.btn-secondary { background: rgba(0,0,0,.4); color: #fff; border: 2px solid rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-3px); }

/* ── CHARACTERS (HERO SECTION) ── */
.char {
  position: absolute; z-index: 20;
  visibility: hidden; pointer-events: none;
  will-change: transform, opacity;
  animation: floatIdle 4s ease-in-out infinite;
}
.char img {
  width: 100%; height: 100%; object-fit: contain;
  will-change: transform; filter: drop-shadow(0 15px 15px rgba(0,0,0,.65));
}
@keyframes floatIdle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(2deg); }
}

.char-main { width: 170px; top: 6%; left: -18%; z-index: 25; animation-delay: 0s; }
.char-main img { filter: drop-shadow(0 20px 25px rgba(0,0,0,.8)); scale: 1.1; }

.char1 { width: 160px; bottom: 2%; left: -22%; z-index: 5; animation-duration: 5s; animation-delay: 0.5s; }
.char1 img { scale: 0.8; transform: scaleX(-1); }

.char2 { width: 125px; top: 6%; right: -16%; z-index: 25; animation-duration: 4.5s; animation-delay: 1.2s; }
.char2 img { scale: 1; transform: scaleX(-1); }

.char3 { width: 110px; bottom: 5%; right: -15%; z-index: 5; animation-duration: 3.8s; animation-delay: 0.2s; }
.char3 img { scale: 1; }

.char4 { width: 85px; top: 48%; right: -26%; z-index: 20; animation-duration: 5.5s; animation-delay: 2s; }
.char4 img { scale: 1; }

/* ── TICKER ── */
.ticker-wrap {
  position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: var(--darker); border-top: 1px solid rgba(255,255,255,.05);
  overflow: hidden; z-index: 15;
}
.ticker-track { display: flex; width: max-content; will-change: transform; }
.ticker-item {
  font-size: 1.2rem; color: rgba(255,255,255,.6); letter-spacing: 2px;
  text-transform: uppercase; padding: 18px 40px;
  display: flex; align-items: center; gap: 40px; white-space: nowrap; flex-shrink: 0;
}
.ticker-item::after { content: '✦'; color: var(--pink); opacity: .5; }

/* ── CONTENT SECTIONS ── */
.content-section {
  position: relative; min-height: 100vh; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 140px var(--pad-x) 80px; text-align: center; z-index: 10;
  border-top: 1px solid rgba(255,255,255,.05); overflow-x: clip;
  scroll-margin-top: 80px;
}
.section-dark       { background: var(--darker); }
.section-pure-black { background: #000; }

/* ── LORE LAYOUT (SECTION 2) ── */
.lore-split-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 60px); align-items: center;
  max-width: 1200px; width: 100%; margin: 0 auto; text-align: left;
}
.lore-split-layout > * { min-width: 0; }

.lore-image-wrapper {
  position: relative; width: 100%; border-radius: 24px; padding: 8px; overflow: hidden;
  background: linear-gradient(135deg, rgba(255,79,163,.4) 0%, rgba(58,214,255,.1) 100%);
  box-shadow: 0 30px 60px rgba(0,0,0,.9), inset 0 2px 10px rgba(255,255,255,.2);
  transform: perspective(1200px) rotateY(8deg) rotateX(2deg);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s;
  will-change: transform;
}
.lore-image-wrapper:hover {
  transform: perspective(1200px) scale(1.02);
  box-shadow: 0 40px 80px #000, 0 0 40px rgba(255,79,163,.3);
}
.lore-image {
  width: 100%; height: auto; display: block; object-fit: contain;
  border-radius: 16px; border: 2px solid rgba(0,0,0,.5);
}

.lore-text-container { display: flex; flex-direction: column; justify-content: center; gap: 24px; min-width: 0; }

.text-pink   { color: var(--pink);   text-shadow: 0 0 10px rgba(255,79,163,.4); }
.text-yellow { color: var(--yellow); text-shadow: 0 0 10px rgba(255,226,70,.4); }
.text-blue   { color: var(--blue);   text-shadow: 0 0 10px rgba(58,214,255,.4); }
.text-white  { color: #fff; }

.lore-text-container h2 {
  font-family: 'BobaMilky', cursive;
  font-size: clamp(2.4rem, 4.5vw, 4.5rem); line-height: 1.05;
}
.lead-text { font-size: clamp(1.1rem, 2.2vw, 1.8rem); font-weight: 500; line-height: 1.6; letter-spacing: .04em; }
.sub-text  { font-size: clamp(1rem, 1.6vw, 1.25rem); color: rgba(255,255,255,.9); line-height: 1.8; letter-spacing: .02em; }

.display-block { display: block; }
.text-nowrap   { white-space: nowrap; }
.scrub-char    { opacity: .15; will-change: opacity; display: inline; }
.scrub-space   { white-space: pre; }

/* ── CAST LAYOUT (SECTION 3) ── */
.cast-header { text-align: center; margin-bottom: 60px; width: 100%; }
.cast-header h2 { font-family: 'BobaMilky', cursive; font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1; margin-bottom: 16px; }

.cast-split-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 40px);
  max-width: 1400px; width: 100%; margin: 0 auto; 
  align-items: flex-start; /* Corrects desktop vertical misalignment */
}

.hero-display { display: flex; flex-direction: row-reverse; align-items: center; gap: 32px; }
.hero-content { flex: 1; text-align: right; border-right: 3px solid var(--pink); padding-right: 24px; }
.hero-tag { display: inline-block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.hero-content h3 { font-family: 'BobaMilky', cursive; font-size: clamp(2.6rem, 4vw, 4.5rem); line-height: 1; margin-bottom: 16px; }
.hero-content p { font-size: clamp(.95rem, 1.1vw, 1.1rem); color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 0; }

.enemy-carousel    { position: relative; width: 100%; min-width: 0; display: flex; flex-direction: column; }
.carousel-viewport { overflow: hidden; width: 100%; position: relative; }
.carousel-track    { display: flex; will-change: transform; width: 100%; }

.carousel-slide { flex: 0 0 100%; width: 100%; display: flex; flex-direction: row; align-items: center; gap: 32px; }
.carousel-slide h4 { flex: 1; text-align: left; }
.enemy-name { font-family: 'BobaMilky', cursive; font-size: clamp(2rem, 3vw, 3rem); color: #fff; margin: 0; letter-spacing: 1px; }

.hero-image-container, .carousel-slide img { 
  flex: 1; 
  min-width: 0;
  max-width: calc(50% - 16px); 
}

.hero-image-container img, .carousel-slide img {
  width: 100%; height: clamp(200px, 26vw, 320px); object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.9)); transition: transform 0.4s ease; animation: none;
}
.hero-image-container img:hover, .carousel-slide img:hover { transform: scale(1.06) translateY(-10px); }

.carousel-controls { 
  display: flex; gap: 16px; margin-top: 24px; justify-content: flex-start; 
  padding-left: calc(50% + 16px); 
}
.carousel-btn { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); flex-shrink: 0; }
.carousel-btn svg { width: 22px; height: 22px; transition: transform 0.3s; }
.carousel-btn:hover:not(:disabled) { border-color: #fff; background: #fff; color: #000; }
.btn-prev:hover:not(:disabled) svg { transform: translateX(-4px); }
.btn-next:hover:not(:disabled) svg { transform: translateX(4px); }
.carousel-btn:disabled { opacity: 0.2; cursor: not-allowed; border-color: rgba(255,255,255,0.1); }

/* ── CTA LAYOUT (SECTION 4) ── */
.cta-split-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px);
  max-width: 1200px; width: 100%; margin: 0 auto; align-items: center;
}

.cta-video-container { position: relative; width: 100%; }
.cta-video-glow { position: absolute; inset: -20px; background: radial-gradient(circle, rgba(58,214,255,0.15) 0%, transparent 70%); border-radius: 50%; z-index: 0; animation: pulseGlow 4s infinite alternate; }
.cta-video-wrapper { position: relative; z-index: 1; width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; background: #000; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.1); transform: perspective(1000px) rotateY(4deg); transition: transform 0.5s ease; }
.cta-video-wrapper:hover { transform: perspective(1000px) rotateY(0deg) scale(1.02); }
.cta-video-wrapper video { width: 100%; height: 100%; object-fit: cover; }

.custom-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; background: rgba(255, 79, 163, 0.15); border: 1px solid var(--pink); border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; z-index: 5; cursor: pointer; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,79,163,0.3); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.custom-play-btn svg { width: 28px; height: 28px; fill: currentColor; margin-left: 4px; }
.custom-play-btn:hover { background: rgba(255, 79, 163, 0.4); transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 15px 40px rgba(255, 79, 163, 0.4), inset 0 0 30px rgba(255,79,163,0.6); }
.cta-video-wrapper.is-playing .custom-play-btn { opacity: 0; visibility: hidden; transform: translate(-50%, -50%) scale(0.8); }

.cta-content { display: flex; flex-direction: column; text-align: left; }
.cta-content h2 { font-family: 'BobaMilky', cursive; font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1.05; margin-bottom: 16px; }
.cta-content .sub-text { margin-bottom: 40px; }

.cta-button-group { display: flex; flex-direction: column; gap: 16px; }
.cta-action-btn { display: flex; align-items: center; gap: 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 16px 24px; text-decoration: none; color: #fff; transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.cta-action-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.cta-action-btn.btn-steam:hover   { border-color: var(--pink); box-shadow: 0 10px 30px rgba(255,79,163,0.15); }
.cta-action-btn.btn-discord:hover { border-color: var(--blue); box-shadow: 0 10px 30px rgba(58,214,255,0.15); }
.cta-action-btn.btn-youtube:hover { border-color: #ff0000; box-shadow: 0 10px 30px rgba(255,0,0,0.15); }

.btn-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.05); }
.btn-steam .btn-icon   { color: var(--pink); fill: var(--pink); }
.btn-discord .btn-icon { color: var(--blue); fill: var(--blue); }
.btn-youtube .btn-icon { color: #ff0000; fill: #ff0000; }
.btn-icon svg { width: 24px; height: 24px; }
.btn-text { display: flex; flex-direction: column; flex: 1; }
.btn-title { font-family: 'Pixelify Sans', sans-serif; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.btn-sub { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.btn-arrow { font-family: monospace; font-size: 1.5rem; color: rgba(255,255,255,0.3); transition: transform 0.3s, color 0.3s; }
.cta-action-btn:hover .btn-arrow { transform: translateX(8px); color: #fff; }

/* ── FOOTER ── */
footer { background: #000; padding: 60px 24px; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); }
footer h3 { font-family: 'BobaMilky', cursive; font-size: 2.5rem; margin-bottom: 16px; color: rgba(255,255,255,0.5); }
footer p { color: rgba(255,255,255,.3); font-size: 1rem; }

/* ── MEDIA QUERIES ── */
@media (max-width: 1100px) {
  .char-main { width: 140px; top: 2%; left: -10%; }
  .char1     { width: 120px; bottom: 5%; left: -12%; }
  .char2     { width: 100px; top: 2%; right: -10%; }
  .char3     { width: 90px;  bottom: 8%; right: -10%; }
  .char4     { width: 70px;  right: -16%; }
}

@media (max-width: 960px) {
  .lore-split-layout { grid-template-columns: 1fr; text-align: center; gap: 36px; }
  .lore-text-container { align-items: center; }
  .lore-image-wrapper { transform: none; }
  .bg-art { background-attachment: scroll; }
 
  .char-main { width: 110px; left: -4%; top: 4%; }
  .char1     { width: 90px;  left: -2%; bottom: 8%; z-index: 25; }
  .char2     { width: 80px;  right: -2%; top: 4%; }
  .char3     { width: 75px;  right: -2%; bottom: 10%; z-index: 25; }
  .char4     { width: 60px;  right: -4%; }
 
  .cast-split-layout { grid-template-columns: 1fr; gap: 56px; }
  .hero-display { flex-direction: column-reverse; gap: 20px; }
  .hero-content { text-align: center; border-right: none; border-top: 3px solid var(--pink); padding-right: 0; padding-top: 20px; width: 100%; flex: unset; }
  
  .carousel-slide { flex-direction: column; gap: 16px; text-align: center; }
  .carousel-slide h4 { flex: unset; text-align: center; }

  
  .hero-image-container, .carousel-slide img {
    flex: unset;
    max-width: 100%;
    width: 100%;
  }

  .carousel-controls { padding-left: 0; justify-content: center; }

  /* Mobile CTA Shrinkage */
  .cta-split-layout { grid-template-columns: 1fr; gap: 40px; }
  .cta-content { align-items: center; text-align: center; }
  .cta-video-container { width: 75%; margin: 0 auto; } /* Shrunk video */
  .cta-video-wrapper { transform: none; }
  .cta-video-wrapper:hover { transform: none; }
  .cta-button-group { width: 100%; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 760px) {
  nav { width: calc(100vw - 16px); padding: 10px 14px; flex-wrap: wrap; border-radius: 20px; row-gap: 0; align-items: center; }
  .nav-left  { flex: 1; min-width: 0; }
  .nav-right { flex: unset; }
  .nav-links { order: 3; width: 100%; justify-content: center; gap: 6px 14px; border-top: 1px solid rgba(255,255,255,.07); padding-top: 10px; margin-top: 6px; }
  .nav-links a { font-size: .78rem; letter-spacing: 1px; }
  .nav-cta    { padding: 8px 14px; font-size: .82rem; }
  .nav-socials { gap: 12px; padding-left: 4px; }
  .nav-socials svg { width: 16px; height: 16px; }
 
  .hero { padding-top: 170px; padding-bottom: 90px; }
  :is(.btn-primary, .btn-secondary) { width: min(100%, 340px); }
  
  
  .char4, .char1, .char3 { display: none; }

  /* CTA Mobile adjustments */
  .cta-action-btn { padding: 12px 16px; gap: 16px; text-align: left; }
  .btn-icon { width: 40px; height: 40px; }
  .btn-icon svg { width: 20px; height: 20px; }
  .btn-title { font-size: 1rem; }
  .cta-video-container { width: 85%; } 
}

@media (max-width: 520px) {
  .char1 { display: none; } 
  .char-main { width: 80px; left: -1%; top: 4%; }
  
  /* Explicitly re-positioning char2 so it doesn't overlap text/logo on small screens */
  .char2 { width: 65px; top: 6%; right: -2%; display: block; }
  
  .hero { padding-top: 190px; }
  .floating-logo { min-width: 110px; }

  .nav-left {
    display: flex;
  }

  .nav-socials {
    display: flex;
    gap: 8px;
  }

  .nav-socials svg {
    width: 14px;
    height: 14px;
  }

}


@media (max-width: 380px) {
  .nav-links { gap: 6px 8px; } /* Tightened gaps so they don't wrap into a second row */
  .nav-links a { font-size: 0.65rem; letter-spacing: 0.5px; } /* Shrunk font so words fit */
  .nav-cta { padding: 6px 10px; font-size: 0.75rem; }
  .cta-video-container { width: 90%; }
}
 
@media (prefers-reduced-motion: reduce) {
  .char, .floating-logo, .video-wrapper, .hero-ctas, nav {
    visibility: visible !important; opacity: 1 !important; transform: none !important;
  }
}





/* ── FOOTER ── */
.site-footer {
  background: #000;
  padding: 80px var(--pad-x) 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  font-family: 'BobaMilky', cursive;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 340px;
  font-size: 0.95rem;
}

.footer-heading {
  font-family: 'Pixelify Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: '>';
  color: var(--pink);
  font-family: monospace;
  font-weight: bold;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  position: absolute;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(16px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(-16px);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-social-icons svg {
  width: 20px;
  height: 20px;
  fill: rgba(255,255,255,0.5);
  transition: fill 0.3s;
}

.footer-social-icons a:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(255,79,163,0.15);
}

.footer-social-icons a:hover svg {
  fill: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #fff;
}


@media (max-width: 460px) {
 
  .footer-socials-col{
    display: none;
  }
 
}


/* ── FOOTER LOGO IMAGE ── */
.footer-logo-img {
  display: block;
  width: 100%;             /* Allows the image to shrink on small screens */
  max-width: 200px;        /* Stops the image from getting too big on desktop */
  height: auto;            /* Keeps the image proportions from stretching */
  margin-bottom: 16px;     /* Adds breathing room above the tagline */
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5)); /* Optional: Gives it a nice pop against the dark background */
}

@media (max-width: 760px) {
  
.footer-social-icons {
  display: flex;
  flex-direction: column;
align-items: center;
  gap: 12px;
}
  .footer-logo-img {
    margin: 0 auto 16px auto; /* Centers the image automatically */
  }
}