    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        height: 100%;
    }

    body {
        height: 100dvh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        font-family: "Acme", sans-serif;
        letter-spacing: 0.075em;

        /* 🌈 FULL PAGE IMMERSIVE BACKGROUND */
        background: radial-gradient(circle at top,
            #ff007a 0%,
            #7a00ff 40%,
            #0b0614 100%);
    }

    /* GLOBAL GLASS PANEL STYLE */
    .glass {
        background: rgba(0,0,0,0.0); // was 0.45 opacity
        border: 1px solid rgba(255,255,255,0.08);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        color: white;
        border-radius: 16px;
    }

    /* HEADER (floating, not blocking background anymore) */
    header {
        flex: 0 0 auto;
        margin: 12px;
        padding: 14px 0px;
        text-align: center;
    }

    header h1 {
        font-size: clamp(1.4rem, 4vw, 2.4rem);
        letter-spacing: 1px;
    }

    header p {
        font-size: clamp(0.85rem, 2.2vw, 1.05rem);
        opacity: 0.85;
    }

    /* MAIN */
    main {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        min-height: 0;
    }

    .page-header {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 10px;
        box-sizing: border-box;
    }

    .page-header-title {
        white-space: nowrap;
       xfont-size: clamp(1.5rem, 5vw, 4rem);
        box-sizing: border-box;
    }
    
    .carousel-container {
        width: 100%;
        max-width: 750px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    /* CAROUSEL PANEL */
    .carousel {
        flex: 1;
        position: relative;
        overflow: hidden;
        border-radius: 18px;
    }

    .slides {
        display: flex;
        height: 100%;
        transition: transform 0.5s ease;
    }

    .slide {
        min-width: 100%;
        height: 100%;
        position: relative; /* IMPORTANT for caption positioning */
        display: block;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: contrast(1.15) saturate(1.25);
    }

    /* caption floats over bottom (more modern app style) */
    .caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;

        padding: 14px;
        text-align: center;

        z-index: 2;

        background: linear-gradient(
            #00000080,
            black
        );

        font-size: 1.5rem;
        color: #fff;

        /* CRITICAL FIX */
        pointer-events: none;
    }

    /* NAV BUTTONS */
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.12);
        color: white;
        font-size: 20px;
        cursor: pointer;
        z-index: 5;
        backdrop-filter: blur(6px);
    }

    .prev { left: 12px; }
    .next { right: 12px; }

    /* DOTS */
    .dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 10px 0;
    }

    .dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
        cursor: pointer;
    }

    .dot.active {
        background: #ff007a;
        box-shadow: 0 0 10px #ff007a;
    }

    /* FOOTER */
    footer {
        flex: 0 0 auto;
        margin: 12px;
        padding: 12px;
        text-align: center;
        font-size: 0.85rem;
    }

    .footer-links {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        width: 100%;
        gap: 20px;
    }
    
    .footer-links a {
        color: rgba(255,255,255,0.75);
        text-decoration: none;
    }

    .footer-links a:hover {
        color: #ff007a;
    }
    
    .bottomLink {
        color: #fff;
        font-size: 20px;
        cursor: pointer;
    }
    
    .bottomLink:hover {
        color: #f0f;
    }
    

@media (max-width: 600px) {
    .bottomLink {
        font-size: 14px;
    }

    .footer-links {
        width: 100%;
        gap: 10px;
    }
}

/* --------------------------------- */

/*
      radial-gradient(circle at 10% 20%, rgba(255, 0, 200, 0.7) 0 1px, transparent 2px),
      radial-gradient(circle at 25% 80%, rgba(255, 0, 200, 0.9) 0 1px, transparent 2px),
      radial-gradient(circle at 40% 30%, rgba(255, 0, 200, 1) 0 1px, transparent 2px),
      radial-gradient(circle at 55% 70%, rgba(255, 0, 200, 0.8) 0 1px, transparent 2px),
      radial-gradient(circle at 70% 40%, rgba(255, 0, 200, 1) 0 1px, transparent 2px),
      radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
      radial-gradient(circle at 95% 25%, rgba(255, 0, 200, 0.8) 0 1px, transparent 2px);
*/

.sparkle {
  position: relative;
  display: inline-block;
  color: white;
  font-weight: 700;

  transform-origin: center;
  animation: sparklePulse 2.4s ease-in-out infinite;
}

.sparkle::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;

  background:
      radial-gradient(circle at 10% 20%, rgba(255, 0, 200, 0.7) 0 1px, transparent 2px),
      radial-gradient(circle at 25% 80%, rgba(255, 0, 200, 0.9) 0 1px, transparent 2px),
      radial-gradient(circle at 40% 30%, rgba(255, 0, 200, 1) 0 1px, transparent 2px),
      radial-gradient(circle at 55% 70%, rgba(255, 0, 200, 0.8) 0 1px, transparent 2px),
      radial-gradient(circle at 70% 40%, rgba(255, 0, 200, 1) 0 1px, transparent 2px),
      radial-gradient(circle at 85% 60%, rgba(255, 0, 200, 0.9) 0 1px, transparent 2px),
      radial-gradient(circle at 95% 25%, rgba(255, 0, 200, 0.8) 0 1px, transparent 2px);

  opacity: 0;
  animation: sparkleFlicker 2.4s infinite;
}

@keyframes sparklePulse {
  0%, 100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.10);
  }

  60% {
    transform: scale(1.04);
  }

  70% {
    transform: scale(1);
  }
}

@keyframes sparkleFlicker {
  0%, 100% {
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  60% {
    opacity: 0.4;
  }

  70% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }
}