/* === BASE GLOBAL STYLES === */

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('../assets/images/StorefrontBackground.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
  overflow-x: hidden;
}

.wrapper {
  text-align: center;
  padding: 0;
  position: relative;
}

/* === ANGLED BRUSH BANNER === */

.angled-banner-brush {
  position: absolute;
  top: 60px;
  right: -10px;
  transform: rotate(-12deg);
  font-family: 'Permanent Marker', cursive;
  font-size: 1.5rem;
  color: #00ffff;
  padding: 10px 22px;
  border-radius: 6px;
  background: transparent !important;
  text-shadow:
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 15px #ff00ff,
    0 0 25px #ff00ff;
  z-index: 10;
}

/* === MID BUTTONS ROW === */

.mid-sign-row {
  position: absolute;
  top: 210px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 16px;
  z-index: 9;
  max-width: 880px;
  width: 100%;
}

.section img {
  width: 135px;
  height: 175px;
  object-fit: cover;
  object-position: center center;
  border: 2px solid #00f;
  border-radius: 8px;
  box-shadow: 0 0 6px #00f;
  transition: all 0.3s ease-in-out;
}

.section img:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 10px #00ffff,
    0 0 20px #00ffff,
    0 0 30px #ff00ff;
}

/* === MINI POWER TOGGLE === */

#mini-overlay {
  position: fixed;
  top: 20px;
  left: 20px;
  font-family: 'Permanent Marker', cursive;
  font-size: 1.2rem;
  color: #00ffff;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 18px;
  border: 2px solid #ff00ff;
  border-radius: 10px;
  z-index: 9999;
  text-shadow:
    0 0 6px #00ffff,
    0 0 12px #ff00ff;
  box-shadow: 0 0 10px #ff00ff;
  animation: pulse 2s infinite;
  transition: opacity 0.4s ease-in-out;
  cursor: pointer;
}

#mini-overlay.hidden {
  display: none !important;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* === MUSIC CONTROLS === */

#music-toggle {
  font-family: 'Permanent Marker', cursive;
  font-size: 14px;
  color: #00ffff;
  background: none;
  border: none;
  text-shadow:
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 20px #ff00ff;
  box-shadow:
    0 0 5px #00ffff,
    0 0 10px #ff00ff;
  animation: neon-pulse 3s infinite;
  cursor: pointer;
  white-space: nowrap;
}

.audio-controls {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 0 10px #ff00ff;
  z-index: 999;
  max-width: 240px;
  overflow: visible;
}

.audio-controls button {
  font-family: 'Permanent Marker', cursive;
  background: none;
  border: none;
  color: #00ffff;
  font-size: 14px;
  cursor: pointer;
  text-shadow: 0 0 6px #00ffff, 0 0 12px #ff00ff;
  white-space: nowrap;
}

.audio-controls input[type="range"],
#volume-slider {
  width: 120px;
  max-width: 100%;
  flex-shrink: 1;
  accent-color: #ff00ff;
  background-color: transparent;
  border-radius: 8px;
  animation: neon-pulse 3s infinite;
  cursor: pointer;
}

@keyframes neon-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px #00ffff)
            drop-shadow(0 0 10px #00ffff)
            drop-shadow(0 0 20px #ff00ff);
  }
  50% {
    filter: drop-shadow(0 0 8px #00ffff)
            drop-shadow(0 0 15px #00ffff)
            drop-shadow(0 0 30px #ff00ff);
  }
}

/* === LINKS & FOOTER === */

.privacy-link,
.about-link {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  color: #00ffff;
  text-decoration: none;
  padding: 6px 12px;
  border: 2px solid #ff00ff;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px #ff00ff;
  text-shadow: 0 0 4px #00ffff, 0 0 8px #ff00ff;
}

.privacy-link:hover,
.about-link:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #ff00ff;
  border-color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

.footer-links {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  z-index: 9999;
}

/* === ABOUT PAGE === */

body.about-page {
  background-image: url('../assets/images/about.png') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-attachment: fixed !important;
  background-size: cover !important;

  margin: 0 !important;
  font-family: 'Permanent Marker', cursive !important;
  color: #fff !important;
  text-shadow: 0 0 8px #0ff, 0 0 12px #f0f !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 100vh !important;
  padding: 2rem !important;
  z-index: 0 !important;
}

.neon-box {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #0ff;
  border-radius: 20px;
  padding: 2rem;
  max-width: 800px;
  text-align: center;
  margin: 5vh auto;
  color: #fff;
  text-shadow: 0 0 8px #0ff, 0 0 12px #f0f;
  box-shadow: 0 0 10px #f0f, 0 0 20px #0ff;
  font-family: 'Permanent Marker', cursive;
}

.back-btn {
  margin-top: 2rem;
  padding: 10px 20px;
  background: black;
  border: 2px solid #0ff;
  border-radius: 10px;
  color: #0ff;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 0 10px #0ff;
}

.back-btn:hover {
  background: #111;
  color: #f0f;
  box-shadow: 0 0 15px #f0f;
}

/* === CLUBHOUSE TITLE === */

.clubhouse-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 2.2rem;
  color: #00ffff;
  text-align: center;
  margin: 12px 0;
  padding: 6px 0;
  text-shadow:
    0 0 5px #00ffff,
    0 0 10px #00ffff,
    0 0 20px #ff00ff,
    0 0 30px #ff00ff;
  background: none !important;
  border: none;
}

/* === TERMINAL GLOW + GLITCH (CJ-OG) === */

.terminal-wrapper {
  max-width: 800px;
  margin: 3rem auto;
  background-color: #000014;
  border: 3px solid #8a2be2;
  box-shadow:
    0 0 25px #8a2be2,
    0 0 45px #4b0082,
    inset 0 0 15px #1e1e50;
  font-family: 'VT323', monospace;
  color: #00ffff;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  backdrop-filter: blur(4px);
}

.terminal-header {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background-color: #1e1e50;
  color: #8a2be2;
  border-bottom: 1px solid #4b0082;
  text-shadow: 0 0 5px #ff00ff;
  font-family: 'Permanent Marker', cursive;
  letter-spacing: 1px;
}

.terminal-screen p {
  margin: 1.2rem 0;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'Permanent Marker', cursive;
}

.glitch-box.cosmic {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.6);
  border: 2px dashed #ff00ff;
  box-shadow:
    0 0 20px #8a2be2,
    0 0 30px #4b0082,
    inset 0 0 15px #ff00ff;
  color: #ff66ff;
  animation: fadeIn 3s ease-in 2s forwards;
  opacity: 0;
  font-size: 1.05rem;
  font-family: 'VT323', monospace;
}

.typing {
  overflow: hidden;
  white-space: pre-line;
  display: inline-block;
  animation: typing 6s steps(70, end);
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.giggle {
  animation: flicker 2s infinite alternate;
}

@keyframes flicker {
  0%   { opacity: 1; }
  25%  { opacity: 0.6; }
  50%  { opacity: 0.2; }
  75%  { opacity: 0.8; }
  100% { opacity: 1; }

}

.home-button {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  color: #00ffff;
  text-decoration: none;
  padding: 6px 12px;
  border: 2px solid #ff00ff;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px #ff00ff;
  text-shadow: 0 0 4px #00ffff, 0 0 8px #ff00ff;
  position: absolute;
  top: 20px;
  left: 10px;
  z-index: 1000;
}

.home-button:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #ff00ff;
  border-color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

.power-button {
  position: absolute;
  top: 402px;     /* Aligns vertically over the blue glow rectangle */
  left: 190px;    /* Adjust horizontally for fine-tuning */
  width: 48px;
  height: auto;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.2s ease-in-out;
}

.power-button:hover {
  transform: scale(1.1);
}

/* === Top Navigation Buttons === */
.top-nav {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 20px;
  z-index: 9999;
}

.nav-button {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  color: #00ffff;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #ff00ff;
  border-radius: 8px;
  padding: 8px 16px;
  text-decoration: none;
  text-shadow: 0 0 4px #00ffff, 0 0 8px #ff00ff;
  box-shadow: 0 0 10px #ff00ff;
}

.nav-button:hover {
  background: rgba(0, 0, 0, 0.9);
  color: #ff00ff;
  border-color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

/* === Power Button Image Position (Responsive) === */
#power-btn {
  position: absolute;
  top: 61.9%;
  left: 18.0%;
  width: 3.6%;
  height: auto;
  cursor: pointer;
  z-index: 1000;
  filter: drop-shadow(0 0 6px #ff00ff) drop-shadow(0 0 12px #00ffff);
  animation: neon-pulse 3s infinite;
  transition: transform 0.2s ease-in-out;
}

#power-btn:hover {
  transform: scale(1.1);
}

/* === Privacy Page Back to Home Button Fix === */
body:has(.privacy-wrapper) .home-button {
  position: fixed !important;
  bottom: 20px;
  right: 20px;
  top: auto !important;
  left: auto !important;
  display: inline-block;
  width: auto;
  height: auto;
}

/* ============================
   SECTION WELCOME BANNERS (SCOPED)
   Safe: affects only pages with these body classes
   ============================ */

/* Base banner style (shared look) */
.showcase-page .welcome-banner,
.sound-page .welcome-banner,
.library-page .welcome-banner,
.office-page .welcome-banner,
.about-page .welcome-banner,
.privacy-page .welcome-banner{
  max-width: 980px;
  margin: 18px auto 20px;
  padding: 16px 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(8,8,20,0.65), rgba(12,12,28,0.55));
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-radius: 22px;
  border: 1px solid rgba(0,255,255,0.35);
  box-shadow:
    0 0 12px rgba(0,255,255,0.65),
    0 0 26px rgba(255,0,128,0.35),
    inset 0 0 22px rgba(0,255,255,0.12),
    inset 0 0 36px rgba(255,0,128,0.10);
  font-family: 'Permanent Marker', cursive; /* matches site vibe */
}

.showcase-page .welcome-banner h2,
.sound-page .welcome-banner h2,
.library-page .welcome-banner h2,
.office-page .welcome-banner h2,
.about-page .welcome-banner h2,
.privacy-page .welcome-banner h2{
  margin: 0 0 6px;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.2vw + .6rem, 1.9rem);
  color: #e7f8ff;
  letter-spacing: .6px;
  text-shadow:
    0 0 6px rgba(0,153,255,0.95),
    0 0 14px rgba(255,0,255,0.85),
    0 0 28px rgba(0,255,255,0.35);
}

.showcase-page .welcome-banner h2::after,
.sound-page .welcome-banner h2::after,
.library-page .welcome-banner h2::after,
.office-page .welcome-banner h2::after,
.about-page .welcome-banner h2::after,
.privacy-page .welcome-banner h2::after{
  content: "";
  display: block;
  width: 120px; height: 3px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: radial-gradient(circle, #00ffff 0%, rgba(0,255,255,0) 70%);
  filter: drop-shadow(0 0 6px #00ffff);
}

.showcase-page .welcome-banner p,
.sound-page .welcome-banner p,
.library-page .welcome-banner p,
.office-page .welcome-banner p,
.about-page .welcome-banner p,
.privacy-page .welcome-banner p{
  margin: 0;
  line-height: 1.6;
  font-size: clamp(.98rem, 1vw + .6rem, 1.08rem);
  color: #eefbff;
  text-shadow:
    0 0 3px rgba(0,255,255,0.75),
    0 0 10px rgba(255,0,255,0.4);
}

/* Clubhouse gets a slimmer strip so it doesn't crowd embeds */
.clubhouse-page .welcome-banner{
  max-width: 1100px;
  padding: 10px 14px;
  margin: 10px auto 14px;
  background: rgba(8,8,20,0.55);
  border: 1px solid rgba(0,255,255,0.3);
  box-shadow: 0 0 10px rgba(0,255,255,0.45);
  font-family: 'Permanent Marker', cursive;
}
.clubhouse-page .welcome-banner h2{ font-size: 1.2rem; margin-bottom: 2px; }
.clubhouse-page .welcome-banner h2::after{ width: 80px; }
.clubhouse-page .welcome-banner p{ font-size: .95rem; line-height: 1.45; }

/* Keep top buttons consistent ONLY on these pages (no impact elsewhere) */
.showcase-page a.home-button, .showcase-page a.privacy-link,
.sound-page a.home-button, .sound-page a.privacy-link,
.library-page a.home-button, .library-page a.privacy-link,
.office-page a.home-button, .office-page a.privacy-link,
.about-page a.home-button, .about-page a.privacy-link,
.privacy-page a.home-button, .privacy-page a.privacy-link,
.clubhouse-page a.home-button, .clubhouse-page a.privacy-link{
  position: fixed;
  top: 10px;
  padding: 6px 12px;
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  text-decoration: none;
  color:#00ffff;
  background: rgba(0,0,0,.65);
  border:2px solid #ff00ff;
  border-radius:8px;
  text-shadow:0 0 4px #00ffff, 0 0 8px #ff00ff;
  box-shadow:0 0 8px #ff00ff;
  z-index:10000;
}
.showcase-page a.home-button, .sound-page a.home-button,
.library-page a.home-button, .office-page a.home-button,
.about-page a.home-button, .privacy-page a.home-button,
.clubhouse-page a.home-button{ left:12px; }
.showcase-page a.privacy-link, .sound-page a.privacy-link,
.library-page a.privacy-link, .office-page a.privacy-link,
.about-page a.privacy-link, .privacy-page a.privacy-link,
.clubhouse-page a.privacy-link{ left:150px; }

/* Tiny mobile tweak */
@media (max-width: 480px){
  .showcase-page .welcome-banner,
  .sound-page .welcome-banner,
  .library-page .welcome-banner,
  .office-page .welcome-banner,
  .about-page .welcome-banner,
  .privacy-page .welcome-banner,
  .clubhouse-page .welcome-banner{
    margin: 10px 12px 14px;
    padding: 12px 14px;
  }
}

/* Showcase-specific welcome banner text color */
.showcase-page .welcome-banner h2,
.showcase-page .welcome-banner p {
  color: #d77bff; /* cosmic purple */
  text-shadow:
    0 0 6px rgba(215,123,255,0.9),
    0 0 14px rgba(255,0,255,0.85),
    0 0 28px rgba(215,123,255,0.35);
}

/* Restore Home & Privacy button style for welcome-banner pages */
.showcase-page a.home-button,
.showcase-page a.privacy-link {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  color: #00ffff;
  text-decoration: none;
  padding: 6px 12px;
  border: 2px solid #ff00ff;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px #ff00ff;
  text-shadow: 0 0 4px #00ffff, 0 0 8px #ff00ff;
  position: absolute;
  top: 20px;
  z-index: 1000;
}

.showcase-page a.home-button { left: 10px; }
.showcase-page a.privacy-link { left: 130px; }

.showcase-page a.home-button:hover,
.showcase-page a.privacy-link:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #ff00ff;
  border-color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

/* Showcase-specific top button positioning */
.showcase-page .home-button,
.showcase-page .privacy-link {
  position: fixed;
  top: 20px;
  padding: 6px 12px;
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  text-decoration: none;
  color: #00ffff;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #ff00ff;
  border-radius: 8px;
  box-shadow: 0 0 8px #ff00ff;
  text-shadow: 0 0 4px #00ffff, 0 0 8px #ff00ff;
  z-index: 1000;
}

/* Back to Home stays left, Privacy sits right beside it with space */
.showcase-page .home-button { left: 20px; }
.showcase-page .privacy-link { left: 160px; }

.showcase-page .home-button:hover,
.showcase-page .privacy-link:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #ff00ff;
  border-color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

/* Showcase: keep buttons side-by-side, no overlap */
.showcase-page .top-buttons{
  position: fixed;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 14px;         /* space between buttons */
  z-index: 10000;
}

/* Neutralize older absolute/left rules on the anchors */
.showcase-page .top-buttons .home-button,
.showcase-page .top-buttons .privacy-link{
  position: static !important;  /* override earlier .home-button absolute */
  top: auto !important;
  left: auto !important;
  margin: 0;
}

/* Office welcome banner (uses shared look) */
.office-page .welcome-banner{
  max-width: 980px;
  margin: 18px auto 20px;
  padding: 16px 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(8,8,20,0.65), rgba(12,12,28,0.55));
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-radius: 22px;
  border: 1px solid rgba(0,255,255,0.35);
  box-shadow:
    0 0 12px rgba(0,255,255,0.65),
    0 0 26px rgba(255,0,128,0.35),
    inset 0 0 22px rgba(0,255,255,0.12),
    inset 0 0 36px rgba(255,0,128,0.10);
  font-family: 'Permanent Marker', cursive;
  z-index: 2;
}
.office-page .welcome-banner h2{
  margin: 0 0 6px; font-weight: 400;
  font-size: clamp(1.35rem, 2.2vw + .6rem, 1.9rem);
  color: #e7f8ff;
  letter-spacing: .6px;
  text-shadow: 0 0 6px rgba(0,153,255,.95), 0 0 14px rgba(255,0,255,.85), 0 0 28px rgba(0,255,255,.35);
}
.office-page .welcome-banner h2::after{
  content:""; display:block; width:120px; height:3px; margin:8px auto 0; border-radius:999px;
  background: radial-gradient(circle, #00ffff 0%, rgba(0,255,255,0) 70%);
  filter: drop-shadow(0 0 6px #00ffff);
}
.office-page .welcome-banner p{
  margin:0; line-height:1.6; font-size: clamp(.98rem, 1vw + .6rem, 1.08rem);
  color:#eefbff; text-shadow:0 0 3px rgba(0,255,255,.75), 0 0 10px rgba(255,0,255,.4);
}

/* Office-specific cosmic neon blue text */
.office-page .welcome-banner h2,
.office-page .welcome-banner p {
  color: #00e5ff; /* bright neon cyan-blue */
  text-shadow:
    0 0 5px #00e5ff,
    0 0 10px #00e5ff,
    0 0 20px #00bfff,
    0 0 30px #00bfff,
    0 0 40px #66ffff;
}

/* Office-specific neon green text */
.office-page .welcome-banner h2,
.office-page .welcome-banner p {
  color: #39ff14 !important; /* bright neon green */
  text-shadow:
    0 0 5px #39ff14,
    0 0 10px #39ff14,
    0 0 20px #00ff00,
    0 0 30px #00ff00,
    0 0 40px #66ff66 !important;
}

/* FORCE Office banner to neon green (beats earlier reds) */
body.office-page .welcome-banner#office-welcome h2,
body.office-page .welcome-banner#office-welcome p {
  color: #39ff14 !important; /* neon green */
  text-shadow:
    0 0 5px #39ff14,
    0 0 10px #39ff14,
    0 0 20px #00ff00,
    0 0 30px #00ff00,
    0 0 40px #66ff66 !important;
}

/* === LIBRARY SECTION STYLING === */

.library-welcome {
  text-align: center;
  margin: 30px auto 40px;
  padding: 0 20px;
  max-width: 900px;
}

.neon-welcome-text {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #00faff;
  text-shadow:
    0 0 5px #00faff,
    0 0 10px #00faff,
    0 0 20px #ff00d4,
    0 0 40px #ff00d4;
  line-height: 1.4;
}

.neon-picks-box,
.neon-blog-box {
  max-width: 960px;
  margin: 30px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 16px;
  box-shadow: 0 0 15px #00faff, 0 0 30px rgba(0,250,255,0.4);
  backdrop-filter: blur(4px);
  text-align: center;
}

.neon-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.6rem;
  color: #00faff;
  text-shadow: 0 0 8px #00faff, 0 0 18px #0ff;
  margin-bottom: 14px;
}

.embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.yt-embed {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: 12px;
  background: black;
}

.embed-caption {
  margin-top: 12px;
  font-family: 'Permanent Marker', cursive;
  color: #00faff;
  font-size: 1.1rem;
  text-shadow: 0 0 6px #00faff;
}

.blog-iframe {
  border: 2px solid #00faff;
  border-radius: 12px;
  background: #000;
  width: 100%;
  height: 440px;
  box-shadow: 0 0 10px #00faff;
}

.visit-row {
  margin-top: 12px;
}

.neon-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: 'Permanent Marker', cursive;
  text-decoration: none;
  color: #0a0a0a;
  background: #00faff;
  box-shadow: 0 0 6px #00faff, 0 0 16px #00faff;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.neon-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 10px #ff5bd6, 0 0 24px #ff5bd6;
}

.audio-stack {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
}

.weather-box,
.weather-audio-toggle {
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 0 8px #00faff, 0 0 16px #ff00ff;
}

/* === Library Specific Styles === */

.library-page .neon-box {
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid #00ffff;
  border-radius: 16px;
  padding: 16px;
  margin: 20px auto;
  box-shadow: 0 0 10px #ff00ff;
  text-align: center;
}

.library-welcome .neon-welcome-text {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #00faff;
  text-shadow: 0 0 5px #00faff, 0 0 10px #00faff, 0 0 20px #ff00d4;
  margin: 0;
  padding: 0;
}

.left-aligned {
  text-align: left;
  max-width: 960px;
  margin: 0 auto 40px;
}

.embed-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.embed-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.blog-iframe {
  border: 2px solid #00ffff;
  border-radius: 12px;
  background: black;
  box-shadow: 0 0 10px #00ffff;
  width: 100%;
  height: 440px;
}

.visit-row {
  margin-top: 12px;
}

.neon-btn {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  color: #00ffff;
  text-decoration: none;
  padding: 8px 16px;
  border: 2px solid #ff00ff;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.65);
  box-shadow: 0 0 8px #ff00ff;
  text-shadow: 0 0 4px #00ffff, 0 0 8px #ff00ff;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}

.neon-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  color: #ff00ff;
  border-color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

.neon-btn.small-btn button {
  all: unset;
  cursor: pointer;
  color: #00ffff;
  font-family: 'Permanent Marker', cursive;
}

/* === LIBRARY PAGE FINAL FIXES === */

.library-welcome {
  max-width: 880px;
  margin: 100px auto 24px;
  padding: 18px 26px;
  text-align: center;
  font-family: 'Permanent Marker', cursive;
  font-size: 1.3rem;
  background: rgba(20, 0, 30, 0.65);
  border: 2px solid #d77bff;
  border-radius: 14px;
  box-shadow: 0 0 10px #d77bff, 0 0 20px #ff00ff;
}

.cosmic-purple-text {
  color: #d77bff;
  text-shadow: 0 0 6px #d77bff, 0 0 14px #ff00ff, 0 0 28px #d77bff;
}

.neon-btn {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  color: #00ffff;
  text-decoration: none;
  padding: 6px 12px;
  border: 2px solid #ff00ff;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px #ff00ff;
  text-shadow: 0 0 4px #00ffff, 0 0 8px #ff00ff;
  display: inline-block;
  margin-top: 12px;
}

.neon-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #ff00ff;
  border-color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

.neon-btn-row {
  text-align: center;
  margin: 12px 0;
}

.neon-picks-box,
.neon-blog-box {
  margin-left: 80px;
  margin-bottom: 24px;
}

.embed-wrapper {
  margin-top: 12px;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px #ff00ff;
}

/* Weather audio repositioned and styled like other buttons */
.weather-audio-toggle {
  position: absolute;
  top: 28px;
  right: 42px;
  z-index: 9999;
}

.weather-audio-toggle button {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  color: #00ffff;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #ff00ff;
  border-radius: 8px;
  padding: 6px 10px;
  text-shadow: 0 0 4px #00ffff, 0 0 8px #ff00ff;
  box-shadow: 0 0 8px #ff00ff;
}

.weather-audio-toggle button:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #ff00ff;
  border-color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

/* Privacy at bottom left */
.privacy-link.bottom {
  position: fixed !important;
  bottom: 20px !important;
  left: 20px !important;
  top: auto !important;
  z-index: 9999;
}

/* === FINAL LIBRARY SCROLL AND BOX FIX === */

.library-page .yt-embed,
.library-page .blog-iframe {
  width: 360px !important;
  height: 420px !important;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 12px #ff00ff;
}

.library-page .neon-picks-box,
.library-page .neon-blog-box {
  max-width: 400px;
  margin: 0 20px 28px 40px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 14px;
  border: 2px solid #00ffff;
  box-shadow: 0 0 10px #ff00ff;
}

.library-page .neon-picks-box h2,
.library-page .neon-blog-box h2 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  text-align: left;
  padding-left: 4px;
}

.library-page .visit-row {
  text-align: left;
  margin-top: 10px;
}

.library-page iframe {
  display: block;
  margin: 0 auto;
}

/* === LIBRARY FINAL STYLES === */

.library-page .weather-audio-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.library-page .weather-audio-btn button {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  padding: 6px 12px;
  color: #00ffff;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #ff00ff;
  border-radius: 8px;
  box-shadow: 0 0 8px #ff00ff;
  text-shadow: 0 0 4px #00ffff, 0 0 8px #ff00ff;
  cursor: pointer;
}

.library-page .weather-audio-btn button:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #ff00ff;
  border-color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

.library-page .linkout-row {
  display: flex;
  justify-content: center;
  margin: 10px auto;
}

.library-page .neon-btn {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  color: #00ffff;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #ff00ff;
  border-radius: 8px;
  padding: 6px 12px;
  text-decoration: none;
  box-shadow: 0 0 8px #ff00ff;
  text-shadow: 0 0 4px #00ffff, 0 0 8px #ff00ff;
  margin: 6px;
}

.library-page .neon-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #ff00ff;
  border-color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

.library-page .neon-blog-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

/* === Final Library: Move Privacy Link to Bottom === */

.library-page .privacy-link {
  position: fixed !important;
  top: auto !important;
  left: 20px !important;
  bottom: 20px !important;
  z-index: 9999;
}

/* === Clubhouse Twitch Embed Sizing === */
.twitch-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 12px;
}

.clubhouse-twitch {
  width: 60vw;
  height: 340px;
  border-radius: 12px;
  box-shadow: 0 0 12px #00ffff, 0 0 24px #ff00ff;
}

/* === Clubhouse Welcome Banner (Cosmic Purple Theme) === */
.clubhouse-page .welcome-banner h2,
.clubhouse-page .welcome-banner p {
  color: #d77bff;
  text-shadow:
    0 0 6px rgba(215,123,255,0.9),
    0 0 14px rgba(255,0,255,0.85),
    0 0 28px rgba(215,123,255,0.35);
}

/* === Clubhouse Top Buttons Consistency === */
.clubhouse-page .top-buttons {
  position: fixed;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 14px;
  z-index: 10000;
}

.clubhouse-page .nav-button {
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  color: #00ffff;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #ff00ff;
  border-radius: 8px;
  padding: 8px 16px;
  text-decoration: none;
  text-shadow: 0 0 4px #00ffff, 0 0 8px #ff00ff;
  box-shadow: 0 0 10px #ff00ff;
}

.clubhouse-page .nav-button:hover {
  background: rgba(0, 0, 0, 0.9);
  color: #ff00ff;
  border-color: #00ffff;
  box-shadow: 0 0 12px #00ffff;
}

/* === CLUBHOUSE PAGE FIXES === */
.clubhouse-page {
  font-family: 'Permanent Marker', cursive;
  color: #fff;
  overflow: hidden;
}

.clubhouse-page .top-buttons {
  position: fixed;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 16px;
  z-index: 1000;
}

.clubhouse-page .welcome-banner {
  max-width: 960px;
  margin: 80px auto 20px;
  padding: 20px 24px;
  text-align: center;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #f5be42;
  box-shadow:
    0 0 10px #f5be42,
    0 0 20px #ffaa00,
    0 0 30px #ffcc00;
}

.clubhouse-page .welcome-banner h2 {
  font-size: 1.6rem;
  color: #f5be42;
  margin-bottom: 8px;
  text-shadow: 0 0 5px #f5be42, 0 0 12px #ffaa00;
}

.clubhouse-page .welcome-banner p {
  font-size: 1.05rem;
  color: #fffbe0;
  line-height: 1.5;
  text-shadow: 0 0 4px #f5be42;
}

.clubhouse-page .twitch-wrapper {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
}

.clubhouse-page .twitch-embed {
  width: 90%;
  max-width: 720px;
  height: 400px;
  border: 2px solid #00ffff;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #ff00ff;
}

/* === CLUBHOUSE PAGE FIXES === */
.clubhouse-page {
  font-family: 'Permanent Marker', cursive;
  color: #fff;
  overflow: hidden;
}

.clubhouse-page .top-buttons {
  position: fixed;
  top: 1%;
  left: 1%;
  display: flex;
  gap: 16px;
  z-index: 1000;
}

.clubhouse-page .welcome-banner {
  max-width: 60%;
  margin: 80px auto 20px;
  padding: 20px 24px;
  text-align: center;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #f5b7e4;
  box-shadow: 0 0 10px #f5b7e4, 0 0 20px #ff44aa, 0 0 30px #cc00cc;
}

.clubhouse-page .welcome-title {
  font-size: 1.6rem;
  color: #f5b7e4;
  margin-bottom: 6px;
  text-shadow: 0 0 5px #f5b7e4, 0 0 12px #ff44aa;
}

.clubhouse-page .welcome-sub {
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 0 4px #f5b7e4;
}

.clubhouse-page .twitch-wrapper {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
}

.clubhouse-page .twitch-embed {
  width: 100%;
  height: 400px;
  border: 2px solid #00ffff;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #ff00ff;
}

.clubhouse-page .neon-btn {
  background-color: transparent;
  color: #00ffff;
  font-family: 'Permanent Marker', cursive;
  border: 2px solid #ff00ff;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 8px #ff00ff, 0 0 16px #00ffff;
  transition: 0.3s;
}

.clubhouse-page .neon-btn:hover {
  background-color: #000;
  box-shadow: 0 0 12px #ff00ff, 0 0 24px #00ffff;
}

.clubhouse-page .audio-controls.bottom {
  position: fixed;
  right: 1.5%;
  bottom: 1%;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 999;
}

/* === CLUBHOUSE PAGE FIXES === */
.clubhouse-page {
  font-family: 'Permanent Marker', cursive;
  color: #fff;
  overflow-x: hidden;
}

.top-buttons {
  position: fixed;
  top: 1.4vh;
  left: 1vw;
  display: flex;
  gap: 16px;
  z-index: 999;
}

.clubhouse-page .welcome-banner {
  max-width: 640px;
  margin: 80px auto 20px;
  padding: 20px 24px;
  text-align: center;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #f5e642;
  box-shadow: 0 0 10px #f5e642, 0 0 20px #ffaa00;
}

.clubhouse-page .welcome-banner h1 {
  font-size: 1.6em;
  color: #f5e642;
  margin-bottom: 8px;
  text-shadow: 0 0 5px #f5e642, 0 0 12px #ffaa00;
}

.clubhouse-page .welcome-banner p {
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0 0 4px #f5e642;
}

.selector-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px auto;
  max-width: 700px;
  flex-wrap: wrap;
}

.twitch-wrapper {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.twitch-embed {
  width: 100%;
  height: 420px;
  border: 3px solid #0ff;
  border-radius: 12px;
  box-shadow: 0 0 20px #0ff, 0 0 30px #f0f;
}

/* === SOUND ROOM WELCOME === */
.soundroom-welcome {
  max-width: 80%;
  margin: 40px auto 20px auto;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #ff00ff;
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff33cc;
}

.soundroom-welcome .neon-welcome-text {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.4rem;
  color: #ff66ff;
  text-shadow:
    0 0 5px #ff66ff,
    0 0 10px #ff33cc,
    0 0 20px #cc00cc;
  line-height: 1.6;
}

.soundroom-welcome .glitch {
  display: inline-block;
  animation: glitch-hello 2s infinite;
  color: #ff00ff;
}

/* Optional tiny glitch animation */
@keyframes glitch-hello {
  0% { opacity: 1; transform: translate(0); }
  20% { opacity: 0.6; transform: translate(-1px, 1px); }
  40% { opacity: 0.8; transform: translate(1px, -1px); }
  60% { opacity: 0.6; transform: translate(-1px, 0); }
  80% { opacity: 0.9; transform: translate(1px, 1px); }
  100% { opacity: 1; transform: translate(0); }
}

.audio-controls {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 0 10px #ff00ff;
  z-index: 999;
  max-width: 240px;
  overflow: visible;
}

.audio-controls button {
  background: none;
  border: none;
  color: #00ffff;
  font-size: 18px;
  cursor: pointer;
  margin-right: 10px;
}

.audio-controls input[type="range"] {
  accent-color: #00ffff;
  width: 100px;
}

.audio-controls {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 0 10px #ff00ff;
  z-index: 9999;
  max-width: 300px;
}

.audio-controls button {
  font-family: 'Permanent Marker', cursive;
  background: none;
  border: none;
  color: #00ffff;
  font-size: 14px;
  cursor: pointer;
  text-shadow: 0 0 6px #00ffff, 0 0 12px #ff00ff;
  white-space: nowrap;
}

.audio-controls input[type="range"] {
  width: 120px;
  max-width: 100%;
  accent-color: #ff00ff;
  background-color: transparent;
  border-radius: 8px;
  animation: neon-pulse 3s infinite;
  cursor: pointer;
}

@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

/* Reserve space so nothing hides behind the fixed footer */
:root { --footer-pad: 96px; } /* tweak if you add more links */
#page-content { padding-bottom: calc(var(--footer-pad) + env(safe-area-inset-bottom, 0px)); }

/* ===== Neon Footer Navigation ===== */
.glow-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 10px 0;
  width: 100%;

  background: transparent;   /* no blur/haze */
  backdrop-filter: none;
  box-shadow: none;
  border: none;
}

.glow-footer__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.glow-card {
  --neon1: #00ffff;
  --neon2: #ff00ff;
  --neon3: #7d3cff;

  font-family: 'Permanent Marker', system-ui, sans-serif;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;

  background: rgba(15, 15, 30, 0.70);
  border: 2px solid var(--neon1);
  box-shadow:
    0 0 6px var(--neon1),
    0 0 16px var(--neon2),
    inset 0 0 6px rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.glow-card:hover,
.glow-card:focus {
  border-color: var(--neon2);
  box-shadow:
    0 0 8px var(--neon2),
    0 0 22px var(--neon3),
    0 0 40px var(--neon2);
  transform: translateY(-1px) scale(1.02);
  outline: none;
}

@media (max-width: 720px) {
  .glow-card {
    padding: 7px 12px;
    font-size: 0.95rem;
    border-radius: 12px;
  }
}

.contact-line {
  text-align: center;
  margin-top: 20px;
  font-family: 'Permanent Marker', cursive;
  font-size: 1.1rem;
  color: #39ff14; /* neon green text */
  text-shadow: 0 0 5px #39ff14,
               0 0 10px #39ff14,
               0 0 20px #00ffcc,
               0 0 30px #00ffcc;
}

.neon-link {
  color: #ff00cc; /* neon pink */
  text-decoration: none;
  text-shadow: 0 0 5px #ff00cc,
               0 0 10px #ff00cc,
               0 0 20px #ff33cc,
               0 0 30px #ff33cc;
}

.neon-link:hover {
  color: #00ffff; /* hover glow */
  text-shadow: 0 0 5px #00ffff,
               0 0 10px #00ffff,
               0 0 20px #00ffff,
               0 0 30px #00ffff;
}

/* === 🎥 YouTube Promo Frame Styling === */
.promo-wrap {
  display: grid;
  place-items: center;
  margin: clamp(12px, 3vw, 28px) auto;
  width: min(100%, 1100px);
  padding: clamp(6px, 1.5vw, 12px);
}

.promo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 6px rgba(0,255,255,0.6),
    0 0 12px rgba(255,0,204,0.5),
    0 0 22px rgba(0,255,255,0.35),
    0 0 36px rgba(255,0,204,0.25);
  animation: fadeInVideo 1.2s ease forwards, neonPulse 4.5s ease-in-out infinite;
  opacity: 0;
  transform: scale(0.98);
}

.promo-video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 6px rgba(0,255,255,0.6),
      0 0 12px rgba(255,0,204,0.5),
      0 0 22px rgba(0,255,255,0.35),
      0 0 36px rgba(255,0,204,0.25);
  }
  50% {
    box-shadow:
      0 0 10px rgba(0,255,255,0.75),
      0 0 18px rgba(255,0,204,0.65),
      0 0 30px rgba(0,255,255,0.45),
      0 0 48px rgba(255,0,204,0.35);
  }
}

@keyframes fadeInVideo {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .promo-frame {
    border-radius: 12px;
  }
  .promo-video {
    border-radius: 12px;
  }
}

/* Fix stacking so the promo video isn't under the angled banner */
.angled-banner-brush {
  position: relative;     /* ensure it participates in stacking context */
  z-index: 1;             /* put banner BELOW the video */
}

.promo-wrap {
  position: relative;     /* creates stacking context for the frame */
  z-index: 5;             /* ABOVE the banner */
}

/* If your banner is absolutely positioned and still overlaps,
   you can force it behind almost everything: */
/* .angled-banner-brush { z-index: 0; } */

/* Tidy the iframe edges so no hard corners or overflow lines show */
.promo-frame,
.promo-video {
  border-radius: 16px;
}

/* Optional: slightly reduce the video size on very wide screens so it
   doesn't feel cramped under the banner */
@media (min-width: 1200px) {
  .promo-wrap { width: min(95%, 1000px); }
}

/* === 🎥 Final Promo Video Fix === */
.promo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: clamp(20px, 3vw, 40px) auto;
  width: 90%;                     /* slightly smaller overall width */
  max-width: 900px;               /* reduced from 1100px */
  padding: clamp(6px, 1.5vw, 12px);
  position: relative;
  z-index: 10;
}

.promo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 4px rgba(0,255,255,0.6),
    0 0 8px rgba(255,0,204,0.5),
    0 0 16px rgba(0,255,255,0.35),
    0 0 24px rgba(255,0,204,0.25);
  animation: fadeInVideo 1.2s ease forwards, neonPulse 4.5s ease-in-out infinite;
  opacity: 0;
  transform: scale(0.98);
}

.promo-video {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}

.promo-caption {
  max-width: 800px;
  margin: 12px auto 0;
  text-align: center;
  color: #fff;
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
}

header, .angled-banner-brush {
  position: relative;
  z-index: 1;              /* ensure header stays behind video */
}

#mini-overlay {
  position: fixed;
  z-index: 9999;           /* always top layer */
}

/* Glow animation */
@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 4px rgba(0,255,255,0.6),
      0 0 8px rgba(255,0,204,0.5),
      0 0 16px rgba(0,255,255,0.35),
      0 0 24px rgba(255,0,204,0.25);
  }
  50% {
    box-shadow:
      0 0 8px rgba(0,255,255,0.75),
      0 0 16px rgba(255,0,204,0.65),
      0 0 24px rgba(0,255,255,0.45),
      0 0 36px rgba(255,0,204,0.35);
  }
}

@keyframes fadeInVideo {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .promo-wrap { width: 95%; max-width: 100%; }
  .promo-frame, .promo-video { border-radius: 10px; }
  .promo-caption { font-size: 0.9rem; }
}

/* === 🎥 Smaller Promo Video positioned over rocking chairs === */
.promo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: clamp(14px, 4vh, 36px) auto;
  width: 72%;
  max-width: 720px;
  min-width: 280px;
  position: relative;
  z-index: 5;
}

.promo-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 4px rgba(0,255,255,0.6),
    0 0 8px rgba(255,0,204,0.5),
    0 0 16px rgba(0,255,255,0.35),
    0 0 24px rgba(255,0,204,0.25);
}

.promo-video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 14px;
}

header, .angled-banner-brush {
  position: relative;
  z-index: 1; /* keep banner behind video */
}

#mini-overlay {
  position: fixed;
  z-index: 9999; /* overlay always clickable above all */
}

/* Glow pulse animation */
@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 4px rgba(0,255,255,0.6),
      0 0 8px rgba(255,0,204,0.5),
      0 0 16px rgba(0,255,255,0.35),
      0 0 24px rgba(255,0,204,0.25);
  }
  50% {
    box-shadow:
      0 0 8px rgba(0,255,255,0.75),
      0 0 16px rgba(255,0,204,0.65),
      0 0 24px rgba(0,255,255,0.45),
      0 0 36px rgba(255,0,204,0.35);
  }
}

/* Mobile optimization */
@media (max-width: 600px) {
  .promo-wrap {
    width: 90%;
    max-width: 520px;
  }
  .promo-frame,
  .promo-video {
    border-radius: 10px;
  }
}

/* === 🎥 FINAL: Promo Video scaled to fit over rocking chairs === */
.promo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: clamp(18px, 5vh, 42px) auto;
  width: 60%;              /* smaller overall width */
  max-width: 640px;        /* perfectly fits porch area */
  min-width: 260px;
  position: relative;
  z-index: 5;
}

.promo-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 4px rgba(0,255,255,0.6),
    0 0 8px rgba(255,0,204,0.5),
    0 0 14px rgba(0,255,255,0.35),
    0 0 18px rgba(255,0,204,0.25);
  transform: translateY(15px); /* visually drop down to align with chairs */
}

.promo-video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 12px;
}

header, .angled-banner-brush {
  position: relative;
  z-index: 1;
}

#mini-overlay {
  position: fixed;
  z-index: 9999;
}

/* Subtle pulse */
@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 4px rgba(0,255,255,0.6),
      0 0 8px rgba(255,0,204,0.5),
      0 0 14px rgba(0,255,255,0.35),
      0 0 18px rgba(255,0,204,0.25);
  }
  50% {
    box-shadow:
      0 0 8px rgba(0,255,255,0.75),
      0 0 14px rgba(255,0,204,0.65),
      0 0 18px rgba(0,255,255,0.45),
      0 0 28px rgba(255,0,204,0.35);
  }
}

@media (max-width: 600px) {
  .promo-wrap {
    width: 85%;
    max-width: 500px;
  }
  .promo-frame,
  .promo-video {
    border-radius: 10px;
  }
}

/* === 🎥 FINAL: Promo Video scaled to fit over rocking chairs === */
.promo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: clamp(18px, 5vh, 42px) auto;
  width: 60%;              /* smaller overall width */
  max-width: 640px;        /* perfectly fits porch area */
  min-width: 260px;
  position: relative;
  z-index: 5;
}

.promo-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 4px rgba(0,255,255,0.6),
    0 0 8px rgba(255,0,204,0.5),
    0 0 14px rgba(0,255,255,0.35),
    0 0 18px rgba(255,0,204,0.25);
  transform: translateY(15px); /* visually drop down to align with chairs */
}

.promo-video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 12px;
}

header, .angled-banner-brush {
  position: relative;
  z-index: 1;
}

#mini-overlay {
  position: fixed;
  z-index: 9999;
}

/* Subtle pulse */
@keyframes neonPulse {
  0%, 100% {
    box-shadow:
      0 0 4px rgba(0,255,255,0.6),
      0 0 8px rgba(255,0,204,0.5),
      0 0 14px rgba(0,255,255,0.35),
      0 0 18px rgba(255,0,204,0.25);
  }
  50% {
    box-shadow:
      0 0 8px rgba(0,255,255,0.75),
      0 0 14px rgba(255,0,204,0.65),
      0 0 18px rgba(0,255,255,0.45),
      0 0 28px rgba(255,0,204,0.35);
  }
}

@media (max-width: 600px) {
  .promo-wrap {
    width: 85%;
    max-width: 500px;
  }
  .promo-frame,
  .promo-video {
    border-radius: 10px;
  }
}

/* --- Move the promo video down onto the rocking-chair area --- */
.promo-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;

  /* ↓ push it down; tweak this to fine-tune */
  margin-top: clamp(140px, 18vh, 260px);

  /* keep it centered and smaller */
  width: 60%;
  max-width: 640px;
  min-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.promo-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 4px rgba(0,255,255,0.6),
    0 0 8px rgba(255,0,204,0.5),
    0 0 14px rgba(0,255,255,0.35),
    0 0 18px rgba(255,0,204,0.25);
}

.promo-video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 12px;
}

/* ensure header text never overlaps */
header, .angled-banner-brush { position: relative; z-index: 1; }

/* overlay always on top */
#mini-overlay { position: fixed; z-index: 9999; }

/* mobile: a little wider so it feels balanced */
@media (max-width: 600px) {
  .promo-wrap {
    margin-top: clamp(90px, 14vh, 160px);
    width: 85%;
    max-width: 500px;
  }
}
/* === 🎥 Position promo video directly across rocking chairs === */
.promo-wrap {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;

  /* ↓ move the video farther down (adjust bottom value if needed) */
  margin-top: clamp(260px, 32vh, 380px);

  width: 60%;
  max-width: 640px;
  min-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.promo-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 4px rgba(0,255,255,0.6),
    0 0 8px rgba(255,0,204,0.5),
    0 0 14px rgba(0,255,255,0.35),
    0 0 18px rgba(255,0,204,0.25);
}

.promo-video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius: 12px;
}

header, .angled-banner-brush {
  position: relative;
  z-index: 1;
}

#mini-overlay {
  position: fixed;
  z-index: 9999;
}

/* Mobile responsive adjustments */
@media (max-width: 600px) {
  .promo-wrap {
    margin-top: clamp(180px, 25vh, 260px);
    width: 85%;
    max-width: 500px;
  }
}
/***** FIXES – append to the very end of styles.css *****/

/* 1) Restore angled brush banner EXACT position (no layout changes elsewhere) */
.angled-banner-brush{
  position: absolute !important;
  top: 60px !important;
  right: -10px !important;
  transform: rotate(-12deg) !important;
  z-index: 10 !important;
}

/* 2) Lower ONLY the promo video block on the landing page */
.promo-wrap{
  /* keep size modest so it sits over the rocking chairs */
  width: 60% !important;
  max-width: 640px !important;
  min-width: 260px;
  margin-left: auto !important;
  margin-right: auto !important;

  /* push it down – raise these numbers to move lower, lower to move up */
  margin-top: clamp(360px, 46vh, 560px) !important;

  /* no extra stacking tricks; don't affect anything else */
  position: relative !important;
  z-index: 5 !important;
}

.promo-frame{ border-radius: 12px !important; }
.promo-video{ border-radius: 12px !important; }

/* Mobile: a bit wider and slightly less offset so it stays visible */
@media (max-width: 600px){
  .promo-wrap{
    width: 85% !important;
    max-width: 500px !important;
    margin-top: clamp(230px, 34vh, 380px) !important;
  }
}

/* === RESTORE ORIGINAL LAYOUT FOR ANGLED TEXT & SECTION BUTTONS === */

/* --- Angled Brush Banner (Power Up and Chill – It’s a GenX Thing) --- */
.angled-banner-brush {
  position: absolute !important;
  top: 60px !important;
  right: -10px !important;
  transform: rotate(-12deg) !important;
  font-family: 'Permanent Marker', cursive !important;
  font-size: 1.5rem !important;
  color: #00ffff !important;
  text-shadow:
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 15px #ff00ff,
    0 0 25px #ff00ff !important;
  background: transparent !important;
  z-index: 10 !important;
}

/* --- Section Button Row (between sign and door) --- */
.mid-sign-row {
  position: absolute !important;
  top: 210px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  z-index: 9 !important;
  max-width: 880px !important;
  width: 100% !important;
}

/* --- Section Button Styling --- */
.section img {
  width: 135px !important;
  height: 175px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  border: 2px solid #00f !important;
  box-shadow: 0 0 6px #00f !important;
  transition: all 0.3s ease-in-out !important;
}

.section img:hover {
  transform: scale(1.05) !important;
  box-shadow:
    0 0 10px #00ffff,
    0 0 20px #00ffff,
    0 0 30px #ff00ff !important;
}

/* === FINAL LANDING PAGE RESTORE === */

/* --- Restore Angled Neon Text (Power Up and Chill) --- */
.angled-banner-brush {
  position: absolute !important;
  top: 60px !important;
  right: -10px !important;
  transform: rotate(-12deg) !important;
  font-family: 'Permanent Marker', cursive !important;
  font-size: 1.5rem !important;
  color: #00ffff !important;
  text-shadow:
    0 0 5px #0ff,
    0 0 10px #0ff,
    0 0 15px #ff00ff,
    0 0 25px #ff00ff !important;
  z-index: 20 !important;
  background: none !important;
}

/* --- Restore Section Buttons (under General Store sign) --- */
.mid-sign-row {
  position: absolute !important;
  top: 200px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  z-index: 15 !important;
  max-width: 880px !important;
  width: 100% !important;
}

/* --- Ensure nothing overlaps the video --- */
.promo-wrap {
  position: relative !important;
  z-index: 10 !important;
  margin-top: clamp(260px, 32vh, 380px) !important;
}

/***** FINAL HARD RESTORE (banner + buttons) + DECOUPLED VIDEO *****/

/* Angled neon banner – original spot */
.angled-banner-brush{
  position: absolute !important;
  top: 60px !important;
  right: -10px !important;
  transform: rotate(-12deg) !important;
  z-index: 10 !important;
}

/* Section buttons – centered under the sign */
.mid-sign-row{
  position: absolute !important;
  top: 210px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 16px !important;
  max-width: 880px !important;
  width: 100% !important;
  z-index: 9 !important; /* sits above video */
}

/* VIDEO: detach from any margins/flex and place lower on the porch */
.promo-wrap{
  position: absolute !important;      /* anchor to .wrapper (which is relative) */
  left: 50% !important;
  transform: translateX(-50%) !important;
  top: 430px !important;              /* ↓ move lower/higher by changing this one value */
  width: 60% !important;
  max-width: 640px !important;
  min-width: 260px !important;
  margin: 0 !important;               /* kill inherited margins */
  padding: 0 !important;
  z-index: 8 !important;              /* below buttons, above background */
}

.promo-frame{ border-radius: 12px !important; }
.promo-video{ border-radius: 12px !important; }

.site-intro {
  max-width: 820px;
  margin: 30px auto;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  border: 2px solid #ff00ff;
  box-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff;
  text-align: center;
  font-family: 'Permanent Marker', cursive;
  color: #fff;
  text-shadow: 0 0 4px #00ffff, 0 0 8px #ff00ff;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* === Homepage Intro Box: Lowered slightly, same neon styling === */
.site-intro {
  position: relative;
  top: auto; /* remove upward shift */
  margin-top: 0px; /* lower the box a bit under the buttons */
  max-width: 780px;
  padding: 16px 24px;

  background: rgba(0, 0, 0, 0.55);
  border: 2px solid #00ffff;
  border-radius: 14px;
  box-shadow:
    0 0 8px #00ffff,
    0 0 16px #ff00ff,
    0 0 24px #00ffff;

  text-align: center;
  font-family: 'Permanent Marker', cursive;
  color: #00ffff;
  text-shadow:
    0 0 5px #00ffff,
    0 0 10px #00ffff,
    0 0 20px #ff00ff,
    0 0 30px #ff00ff;

  line-height: 1.6;
  font-size: 1.1rem;
  z-index: 20;
}

.affiliate-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    color: #fff;
    background: transparent;
    border: 2px solid #00eaff;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Permanent Marker', cursive;
    font-size: 1.2rem;
    text-shadow: 
        0 0 5px #00eaff,
        0 0 10px #00eaff,
        0 0 20px #00eaff;
    box-shadow:
        0 0 10px #00eaff,
        inset 0 0 10px #00eaff;
    transition: 0.3s ease;
}

.affiliate-btn:hover {
    box-shadow:
        0 0 20px #00eaff,
        inset 0 0 20px #00eaff;
    transform: scale(1.05);
}












































