

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            }

        :root {
       
          
      --void:       #04020c;
      --deep:       #0b0520;
      --amethyst:   #6b2fa0;
      --violet:     #9b4fd8;
      --lavender:   #c89eff;
      --lavender-lite:#d287fb;
      --gold:       #e8c84a;
      --gold2: #ffd76b;
      --gold-pale:  #f5e4a0;
      --gold-glow:  #ffda00;
      --teal:       #00d4c8;
      --teal-glow:  #00ffee;
      --rose:       #e84a8a;
      --rose-glow:  #ff6aaa;
      --star:       rgba(255,255,255,0.85);
      --frame-gold: #c8a030;
      --green:      #2cc74c;
      --green-glow: #8ff517;
      --border: rgba(255,255,255,.18);
      --radius: 16px;  
    

        }

        body {
           
        background: linear-gradient(135deg, #050008 0%, #0d0015 25%, #1a0033 50%, #0d0015 75%, #050008 100%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        /* Animated Sparkles */
        @keyframes sparkle {
            0%, 100% {
                opacity: 0;
                transform: scale(0);
            }
            50% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float-sparkle {
            0% {
                transform: translateY(-10vh) translateX(0) scale(1);
                opacity: 1;
            }
            50% {
                opacity: 1;
            }
            100% {
                transform: translateY(110vh) translateX(200px) scale(0.5);
                opacity: 0;
            }
        }

        .sparkles-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .sparkle {
            position: fixed;
            pointer-events: none;
            border-radius: 50%;
            will-change: transform, opacity;
        }

        .sparkle.rose {
            background: radial-gradient(circle at 30% 30%, #ff69b4, #ff1493);
            box-shadow: 0 0 15px #ff69b4, 0 0 30px #ff1493, inset -2px -2px 5px rgba(0,0,0,0.4);
        }

        .sparkle.teal {
            background: radial-gradient(circle at 30% 30%, #20b2aa, #00ced1);
            box-shadow: 0 0 15px #20b2aa, 0 0 30px #00ced1, inset -2px -2px 5px rgba(0,0,0,0.4);
        }

        .sparkle.gold {
            background: radial-gradient(circle at 30% 30%, #ffd700, #ffed4e);
            box-shadow: 0 0 15px #ffd700, 0 0 30px #ffed4e, inset -2px -2px 5px rgba(0,0,0,0.4);
        }

        /* Rotating Mandala */
        @keyframes rotate-counter-clockwise {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(-360deg);
            }
     }
        .white-text  {
           color: #fff;
            text-align: center;
              font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;  
            font-size: 1.1em;
            font-weight: 600;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
        }
     


  /* ══════════════════════════════════════════
  @FONT FACES
   ══════════════════════════════════════════ */
}
@font-face {
  font-family: 'Cinzel';
  src: url(../fonty/Cinzel-Regular.woff2) format('woff2');
}

@font-face {
  font-family: 'Cinzel Decorative';
  src: url(../fonty/CinzelDecorative-Black.woff2) format('woff2');
}

@font-face {
  font-family: 'IM Fell English';
  src: url(../fonty/IMFellEnglish-Regular.woff2) format('woff2');

}


@font-face {
  font-family: 'IM Fell English';
  src: url(../fonty/IMFellEnglish-Italic.woff2) format('woff2');

}    
  .description{
    border-radius: calc(var(--radius) - 3px);
    border: 1px solid var(--border);
    background: rgba(0,0,0,.12);
    box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
    padding: clamp(11px, 2vw, 12px); 
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;  
      font-size: clamp(18px, 1.8vw, 25px);
      color: rgba(249, 230, 251, 0.8);
      font-weight: 400;
  
      margin-top: 8px;
      line-height: 1.5;
  }

  .description-footer {
    border-radius: calc(var(--radius) - 3px);
    border: 1px solid var(--border);
    background: rgba(0,0,0,.12);
    box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
    padding: clamp(11px, 2vw, 12px); 
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;  
      font-size: clamp(15px, 1.8vw, 20px);
      color: rgba(249, 230, 251, 0.8);
      font-weight: 100;
  
      margin-top: 8px;
      line-height: 1.5;
     

  }


  .description p {
    margin: auto;
    line-height: 1.55;
    font-size: clamp(20px, 1.8vw, 25px);
    color: rgba(255,255,255,.88);  
    font-family: 'Cinzel', serif;
    font-weight: 100;
     
       width: min(560px, 60vw);
      color: var(--gold);
      opacity: 1.9;
     

  }
        .mandala-background {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 900px;
            height: 900px;
            pointer-events: none;
            z-index: 2;
            opacity: 0.35;
            animation: rotate-counter-clockwise 90s linear infinite;
        }

        .mandala-background svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 0 20px rgba(200, 100, 255, 0.3));
        }

        .content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .hero {
            margin-bottom: 60px;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .hero-media {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, rgba(100, 50, 150, 0.3), rgba(150, 100, 200, 0.3));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            border: 2px dashed rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.6);
            font-size: 18px;
            font-weight: 300;
            text-align: center;
        }

        .hero h1 {
            color: #ffffff;
            font-size: 48px;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            font-weight: 700;
        }

        .hero p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 18px;
            line-height: 1.6;
            font-weight: 300;
        }

        .gallery-section {
            margin-bottom: 40px;
        }

        .section-title {
            color: #ffffff;
            font-size: 36px;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            font-weight: 700;
        }

        .section-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            margin-bottom: 40px;
            line-height: 1.6;
            font-weight: 300;
        }

        .video-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

      /* */ .video-card {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            padding: 1px;
            padding-bottom: 30px;

        }

        .video-card:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            transform: translateY(-5px);
        }

     .video-container {
           /*   position: relative; */ 
            padding-bottom: 90.25%; 
            width: 100%;
            max-width: 700px;
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 20px;
            background: rgba(0, 0, 0, 0.3);
        


    /*.video-container {
      background-color: #1a1a1a;
      border: 1px solid #333;
      border-radius: 12px;
      padding: 20px;
      max-width: 600px;
      width: 100%;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }

    .video-card {
      width: 100%;
      height: auto;
      border-radius: 8px;
      background-color: #000;
      display: block;
    }

    .video-card::-webkit-media-controls {
      background-color: #333;*/
    }
        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 15px;
        }

        .video-controls {
            position: absolute;
            bottom: 15px;
            right: 15px;
            z-index: 10;
        }

        .fullscreen-btn {
            background: rgba(218, 182, 255, 0.9);
            color: #333;
            border: none;
            padding: 10px 15px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(218, 182, 255, 0.4);
        }

        .fullscreen-btn:hover {
            background: rgba(218, 182, 255, 1);
            box-shadow: 0 6px 20px rgba(218, 182, 255, 0.6);
            transform: scale(1.05);
        }

        .fullscreen-btn:active {
            transform: scale(0.95);
        }

        .video-title {
            color: #ffffff;
            font-size: 22px;
            margin-bottom: 10px;
            font-weight: 700;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        }

        .video-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 1.6;
            font-weight: 300;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .section-title {
                font-size: 28px;
            }

            .video-gallery {
                grid-template-columns: 1fr;
            }

            .hero-media {
                height: 300px;
            }

            .mandala-background {
                width: 600px;
                height: 600px;
            }
        }

        .stage{
          min-height:100vh;
          display:flex;
          align-items:stretch;
          justify-content:center;
          position:relative;
        }

        main{
          width: min(1100px, 100%);
          margin:0 auto;
          padding: 28px 16px 80px;
          position:relative;
          z-index:1;
          color:#efeaff;
        }

        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            object-fit: cover;
            pointer-events: none;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .star {
            position: fixed;
            border-radius: 50%;
            animation: twinkle 3s infinite;
            pointer-events: none;
            z-index: 2;
        }

        .star.green { background: #00ff41; }
        .star.teal { background: #00ffff; }
        .star.pink { background: #ff1493; }

        .container {
            position: relative;
            z-index: 3;
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        h1 {
            text-align: center;
            color: #fff;
            margin-bottom: 40px;
            font-size: 5.5em;
            text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
            letter-spacing: 2px;
            font-family: 'Cinzel Decorative', serif;
        }

        .filter-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 28px;
            opacity: 1;
            font-family: 'Cinzel', serif;
            font-size: 1em;
            font-weight: 600;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .filter-btn:hover {
            background: rgba(249, 183, 5, 0.2);
            border-color: rgba(249, 183, 5, 0.5);
            box-shadow: 0 8px 32px rgba(249, 183, 5, 0.3);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: rgba(0, 255, 65, 0.3);
            border-color: #00ff41;
            box-shadow: 0 0 20px rgba(0, 255, 65, 0.6), inset 0 0 20px rgba(0, 255, 65, 0.1);
            color: #00ff41;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            aspect-ratio: 1;
            opacity: 1;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .gallery-item.hidden {
            display: none;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            border-color: rgba(249, 183, 5, 0.5);
            box-shadow: 0 15px 40px rgba(249, 183, 5, 0.3), inset 0 0 20px rgba(249, 183, 5, 0.1);
        }

        .gallery-item img {
            width: 100%; 
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .image-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: #fff;
            padding: 20px 15px 15px;
            font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;  
            font-size: 0.95em;
            font-weight: 600;
            transform: translateY(10px);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .image-label {
            transform: translateY(0);
        }

        .modalART {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
            animation: fadeInmodalART 0.3s ease;
        }

        @keyframes fadeInmodalART {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .modalART-content {
            position: relative;
            background: rgba(20, 20, 20, 0.95);
            margin: auto;
            padding: 40px 30px 30px;
            border: 2px solid rgba(0, 255, 65, 0.3);
            border-radius: 20px;
            width: 90%;
            max-width: 900px;
            height: 90vh;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            overflow-y: auto;
            backdrop-filter: blur(20px);
            box-shadow: 0 0 50px rgba(245, 176, 39, 0.4), inset 0 0 30px rgba(245, 176, 39, 0.05);
            animation: expandmodalART 0.4s ease;
        }

        @keyframes expandmodalART {
            from {
                width: 100px;
                height: 100px;
                opacity: 0;
            }
            to {
                width: 90%;
                height: 90vh;
                opacity: 1;
            }
        }

        .modalART-image {
            max-width: 100%;
            max-height: 60vh;
            border-radius: 15px;
            object-fit: contain;
            animation: slideInImage 0.5s ease;
            flex-shrink: 0;
        }

        @keyframes slideInImage {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .closeART {
            position: absolute;
            right: 30px;
            top: 30px;
            font-size: 40px;
            font-weight: bold;
            color: #00ff41;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1001;
            text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
        }

        .closeART:hover {
            color: #ff1493;
            text-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
            transform: scale(1.2);
        }

        .modalART-info {
            position: static;
            width: 100%;
            margin-top: 18px;
            color: #ff0;
            text-align: center;
              font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;  
            font-size: 1.1em;
            font-weight: 600;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
        }

        .modalART-description {
            position: static;
            width: 100%;
            max-width: 700px;
            margin: 10px auto 0;
            padding: clamp(11px, 2vw, 16px);
            border-radius: calc(var(--radius) - 3px);
            border: 1px solid var(--border);
            background: rgba(0,0,0,.25);
            box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
            color: rgba(249, 230, 251, 0.85);
            font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
            font-size: clamp(14px, 1.6vw, 17px);
            font-weight: 400;
            line-height: 1.6;
            text-align: center;
        }

        .modalART-description:empty {
            display: none;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2em;
            }

            .gallery {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 15px;
            }

            .filter-btn {
                padding: 10px 20px;
                font-size: 0.9em;
            }

            .modalART-content {
                width: 100%;
                height: 95vh;
                padding: 30px 18px 20px;
            }

            .modalART-image {
                max-height: 60vh;
            }

            .closeART {
                right: 20px;
                top: 20px;
                font-size: 30px;
                   }
}
.sticky-footer{
    position: relative;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    width:100%;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(6px);          /* optional, nicer on supported browsers */
    -webkit-backdrop-filter: blur(6px);  /* optional */
    padding: 12px 16px;
    text-align: center;
    z-index: 1;
    color: #fff;
  }
.footer-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
}

.footer-inner span:not(:last-child)::after{
  content: "•";
  margin-left: 10px;
  opacity: .5;
}

.sticky-footer a{
  text-decoration: none;
  color: #fff; /* default */
  
}

.sticky-footer a:hover{
  color: #ff6a00; /* hover color */
 
}
 }

    @media (max-width: 600px) {
      .button-row { flex-direction: column; align-items: center; }
      
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; }
    }
      
        .main-title2 {
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(50px, 6vw, 80px);
            font-weight: 900;
            line-height: 1.1;
            letter-spacing: 0.04em;
            background: linear-gradient(135deg, #f5e4a0 0%, #e8c84a 30%, #ffffff 50%, #e8c84a 70%, #f5e4a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 30px rgba(232,200,74,0.55));
            margin-bottom: 0.6rem;
            animation: fadeUp 1.4s ease forwards, titleGlow 4s ease-in-out infinite alternate;
            animation-delay: 0.9s, 2.3s;
            opacity: 0;
        }

        @keyframes titleGlow {
            0%   { filter: drop-shadow(0 0 22px rgba(232,200,74,0.45)); }
            100% { filter: drop-shadow(0 0 50px rgba(232,200,74,0.85)) drop-shadow(0 0 80px rgba(155,79,216,0.3)); }
        }

        @keyframes titleGlow2 {
            0%   { filter: drop-shadow(0 0 22px rgba(39, 245, 52, 0.33)); }
            100% { filter: drop-shadow(0 0 50px rgba(9, 153, 18, 0.33)) drop-shadow(0 0 80px rgba(155,79,216,0.3)); }
        }

    /* NAV WRAPPER */
nav {
  position: sticky;
  top: 10px;
  z-index: 50;
  margin: 0 auto;
  width: min(1800px, calc(100% - 24px));
  border-radius: 18px;
  padding: 6px 18px 6px 18px;
  background:
    linear-gradient(180deg, rgba(20,10,35,.70), rgba(10,5,18,.55));
  border: 1px solid rgba(231,201,106,.35);
  box-shadow:
    0 20px 60px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,217,138,.08),
    0 0 0 1px rgba(178,120,255,.08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Corner filigree-ish glow */
nav::before {
  content: "";
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(420px 120px at 15% 10%, rgba(231,201,106,.18), transparent 60%),
    radial-gradient(420px 120px at 85% 10%, rgba(178,120,255,.15), transparent 60%),
    radial-gradient(420px 160px at 10% 95%, rgba(178,120,255,.12), transparent 55%),
    radial-gradient(420px 160px at 90% 95%, rgba(231,201,106,.14), transparent 55%);
  pointer-events: none;
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
}

.seal {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  border: 1px solid rgba(231,201,106,.38);
  background: none;
  box-shadow: 0 0 18px rgba(231,201,106,.18);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.seal img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 0;
}

.seal::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg,
    rgba(255,217,138,0),
    rgba(255,217,138,.28),
    rgba(178,120,255,.22),
    rgba(255,217,138,0)
  );
  animation: spin 8s linear infinite;
  opacity: .8;
}

.seal span {
  position: relative;
  z-index: 1;
  font-weight: 900;
  color: var(--gold2);
  letter-spacing: .02em;
  text-shadow: 0 0 16px rgba(255,217,138,.25);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.brand-title {
  line-height: 1.05;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(246,239,255,.92);
  margin-top: 10px;
}

.brand-title b {
  display: block;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: .06em;
  color: #fff;
  text-shadow: 0 0 18px rgba(255,217,138,.2);
  font-weight: 900;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  border: 1px solid rgba(231,201,106,.35);
  background: rgba(15,8,30,.35);
  color: var(--rose);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255,217,138,.06);
}

.menu-toggle:focus-visible {
  outline: 3px solid rgba(231,201,106,.35);
  outline-offset: 2px;
}

/* NavLinks area */
.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive nav */
@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .nav-inner {
    position: relative;
    padding: 12px;
  }

  .brand {
    min-width: unset;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    margin-top: 16px;
  }

  nav.open .nav-links {
    display: flex;
  }

  nav.open .nav-links .pill {
    width: 100%;
    text-align: center;
  }

  nav.open .seal {
    position: absolute;
    top: 12px;
    left: 40px;
    width: 100px;
    height: 100px;
    z-index: 60;
    transition: width .2s ease, height .2s ease, top .2s ease, left .2s ease;
  }

  .brand-title {
    margin-top: 0;
  }
}
    /* Modal Members*/
       /* ══════════════════════════════════════════
      MODAL POPUP
    ══════════════════════════════════════════ */
    .modal-backdrop{
      position:fixed; inset:0;
      background: radial-gradient(120% 100% at 50% 0%, rgba(107,47,160,.25), rgba(4,2,12,.75) 60%);
      backdrop-filter: blur(6px);
      display:grid;
      place-items:center;
      padding: 18px;
      z-index: 100;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .35s ease, visibility 0s linear .35s;
    }
    .modal-backdrop.open{
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity .35s ease, visibility 0s linear 0s;
    }

    .modal{
      width: min(520px, 100%);
      border-radius: 20px;
      border: 1px solid rgba(231,201,106,.4);
      background:
        radial-gradient(120% 140% at 20% 0%, rgba(155,79,216,.18), transparent 45%),
        radial-gradient(100% 120% at 100% 100%, rgba(0,212,200,.10), transparent 50%),
        linear-gradient(180deg, rgba(20,10,35,.94), rgba(8,4,16,.94));
      box-shadow:
        0 30px 90px rgba(0,0,0,.6),
        0 0 0 1px rgba(178,120,255,.08),
        0 0 60px rgba(155,79,216,.15);
      overflow:hidden;

      transform: scale(.92) translateY(14px);
      transition: transform .35s cubic-bezier(.2,.9,.2,1);
    }
    .modal-backdrop.open .modal{
      transform: scale(1) translateY(0);
    
    }

    .modal-header{
      position: relative;
      padding: 22px 48px 18px 22px;
      text-align: center;
      border-bottom: 1px solid rgba(231,201,106,.22);
    }

    .modal-eyebrow{
      font-family: 'Cinzel', serif;
      font-size: 18px;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: .8;
      margin-bottom: 6px;
    }

    .modal-title{
      font-family: 'Cinzel Decorative', serif;
      font-weight: 900;
      letter-spacing:.04em;
      text-transform: uppercase;
      font-size:30px;
      background: linear-gradient(135deg, #f5e4a0 0%, #e8c84a 40%, #ffffff 55%, #e8c84a 75%, #f5e4a0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 14px rgba(232,200,74,.4));
    }

    .modal-subtitle{
      font-family: 'IM Fell English', Georgia, serif;
      font-style: italic;
      font-size: 24px;
      color: rgba(200,158,255,.85);
      letter-spacing: .03em;
      margin-top: 8px;
      line-height: 1.5;
    }

    .modal-close{
      position: absolute;
      top: 14px;
      right: 14px;
      width: 34px;
      height: 34px;
      display:grid;
      place-items:center;
      background: rgba(231,201,106,.08);
      border: 1px solid rgba(231,201,106,.35);
      color: var(--rose-glow);
      border-radius: 10px;
      cursor:pointer;
      font-weight:800;
      transition: all .2s ease;
    }
    .modal-close:hover{
      background: rgba(232,74,138,.15);
      border-color: rgba(255,106,170,.6);
      box-shadow: 0 0 18px rgba(255,106,170,.35);
    }

    .modal-body{
      padding: 20px 22px 24px;
    }

    .auth-grid{
      display:grid;
      gap: 10px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 520px){
      .auth-grid{ grid-template-columns: 1fr 1fr; }
    }

    .pill{
      position:relative;
      text-align:center;
      padding: 13px 14px;
      border-radius: 14px;
      border: 1px solid rgba(231,201,106,.32);
      background: rgba(255,217,138,.05);
      cursor:pointer;
      font-family: 'Cinzel', serif;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: .04em;
      text-transform: uppercase;
      text-decoration:none;
      color: var(--gold-pale);
      transition: all .2s ease;
      overflow:hidden;
      touch-action: manipulation;
    }
    .pill::before{
      content:'';
      position:absolute; inset:0;
      background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.1) 50%, transparent 70%);
      transform: translateX(-100%);
      transition: transform .5s ease;
    }
    .pill:hover::before{ transform: translateX(100%); }
    .pill:hover{
      color:#fff;
      border-color: rgba(255,217,138,.7);
      background: rgba(255,217,138,.12);
      box-shadow: 0 0 24px rgba(232,200,74,.25);
      transform: translateY(-1px);
    }
    .pill:active{ transform: translateY(0) scale(.98); }

    .pill-pay{
      border-color: rgba(0,212,200,.4);
      color: #a0f5f0;
    }
    .pill-pay:hover{
      border-color: rgba(0,255,238,.65);
      background: rgba(0,212,200,.12);
      box-shadow: 0 0 24px rgba(0,212,200,.3);
    }

    .pay-row{
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(231,201,106,.18);
      display:grid;
      gap: 10px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 520px){
      .pay-row{ grid-template-columns: 1fr 1fr; 
      }
    }
/* ── Watermark ── */
.watermark-container {
  position: relative;
  display: inline-block;
}

.watermark {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 100px;
  opacity: 0.7;
}
     /* ── Buttons ── */
    .button-row {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 1.4s ease forwards;
      animation-delay: 1.0s;
      opacity: 0;
    }

    .mystic-btn {
      position: relative;
      font-family: 'Cinzel', serif;
      font-size: clamp(13px, 1.6vw, 16px);
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--gold-pale);
      padding: 14px 34px;
      border-radius: 50px;
      border: 1px solid rgba(232,200,74,0.4);
      background: rgba(11,5,32,0.6);
      backdrop-filter: blur(8px);
      cursor: pointer;
      transition: all 0.3s ease;
      overflow: hidden;
      min-width: 200px;
    }

    /* Shimmer layer */
    .mystic-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg,
        transparent 30%,
        rgba(255,255,255,0.08) 50%,
        transparent 70%
      );
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }

    .mystic-btn:hover::before { transform: translateX(100%); }

    /* Glow border on hover */
    .mystic-btn::after {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 50px;
      opacity: 0;
      transition: opacity 0.3s;
    }

    @media (max-width: 600px) {
      .button-row { flex-direction: column; align-items: center; }
      .mystic-btn { min-width: 240px; }
       } 
 
     
    }
    @media (max-width: 786px) {
      .button-row { flex-direction: column; align-items: center; }
      .mystic-btn { min-width: 240px; }
    }

    /* Button 1 — gold glow */
    .btn-gold {
      border-color: rgba(232,200,74,0.5);
      box-shadow: 0 0 18px rgba(232,200,74,0.12), inset 0 0 20px rgba(232,200,74,0.05);
    }
    .btn-gold::after { box-shadow: 0 0 0 2px var(--gold-glow), 0 0 35px rgba(255,218,0,0.5); }
    .btn-gold:hover  { background: rgba(232,200,74,0.12); color: #fff; }
    .btn-gold:hover::after, .btn-gold:active::after { opacity: 1; }
    .btn-gold:active {
      transform: scale(0.97);
      box-shadow: 0 0 0 2px var(--gold-glow), 0 0 60px rgba(255,218,0,0.8), 0 0 120px rgba(255,218,0,0.4);
      background: rgba(232,200,74,0.2);
      color: #fff;
    }

    /* Button 2 — teal glow */
    .btn-teal {
      border-color: rgba(0,212,200,0.5);
      box-shadow: 0 0 18px rgba(0,212,200,0.12), inset 0 0 20px rgba(0,212,200,0.05);
      color: #a0f5f0;
    }
    .btn-teal::after { box-shadow: 0 0 0 2px var(--teal-glow), 0 0 35px rgba(0,255,238,0.5); }
    .btn-teal:hover  { background: rgba(0,212,200,0.12); color: #fff; }
    .btn-teal:hover::after, .btn-teal:active::after { opacity: 1; }
    .btn-teal:active {
      transform: scale(0.97);
      box-shadow: 0 0 0 2px var(--teal-glow), 0 0 60px rgba(0,255,238,0.8), 0 0 120px rgba(0,255,238,0.4);
      background: rgba(0,212,200,0.2);
      color: #fff;
    }

    /* Button 3 — rose glow */
    .btn-rose {
      border-color: rgba(232,74,138,0.5);
      box-shadow: 0 0 18px rgba(232,74,138,0.12), inset 0 0 20px rgba(232,74,138,0.05);
      color: #ffb0d0;
    }
    .btn-rose::after { box-shadow: 0 0 0 2px var(--rose-glow), 0 0 35px rgba(255,106,170,0.5); }
    .btn-rose:hover  { background: rgba(232,74,138,0.12); color: #fff; }
    .btn-rose:hover::after, .btn-rose:active::after { opacity: 1; }
    .btn-rose:active {
      transform: scale(0.97);
      box-shadow: 0 0 0 2px var(--rose-glow), 0 0 60px rgba(255,106,170,0.8), 0 0 120px rgba(255,106,170,0.4);
      background: rgba(232,74,138,0.2);
      color: #fff;
      }

    /* Button 3 — rose glow */
    .btn-green {
      border-color: rgba(15, 159, 54, 0.8);
      box-shadow: 0 0 18px rgba(15, 159, 54, 0.12), inset 0 0 20px rgba(15, 159, 54, 0.5);
      color: #92de56;
    }
    .btn-green::after { box-shadow: 0 0 0 2px var(--green-glow), 0 0 35px rgba(132, 244, 75, 0.8); }
    .btn-green:hover  { background: rgba(15, 159, 54, 0.12); color: #fff; }
    .btn-green:hover::after, .btn-green:active::after { opacity: 1; }
    .btn-green:active {
      transform: scale(0.97);
      box-shadow: 0 0 0 2px var(--green-glow), 0 0 60px rgba(132, 244, 75, 0.8), 0 0 120px rgba(132, 244, 75, 0.4);
      background: rgba(15, 159, 54, 0.5);
      color: #fff;
    }

    #enterPoem {
  font-size: clamp(14px, 1.6vw, 20px)!important;

    }
  /* Bottom ornament */
    .ornament-bottom {
      margin-top: 1rem;
       margin-bottom: 1rem;
      font-family: 'Cinzel Decorative', serif;
      font-size: 18px;
      color: var(--amethyst);
      letter-spacing: 0.5em;
      opacity: 0.5;
      animation: fadeUp 1.4s ease forwards;
      animation-delay: 2s;
      opacity: 0;
    }

    @keyframes fadeUp {
      0%   { opacity: 0; transform: translateY(22px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Particle sparkles */
    .sparkle {
      position: fixed;
      pointer-events: none;
      border-radius: 50%;
      animation: sparkleFly var(--dur) ease-out forwards;
      z-index: 60;
    }

    @keyframes sparkleFly {
      0%   { transform: translate(0,0) scale(1); opacity: 1; }
      100% { transform: translate(var(--tx), var(--ty)) scale(0); opacity: 0; }
    }
/* Sparkle Effect */
@keyframes sparkle {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0);
    }
}
 .splash {
      position:sticky;
      inset: 0;
      z-index: 5;
      top:1600px;
      overflow-y: visible;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1rem 1rem;
      text-align: center;
    }

    /* Bring modals (like age verification, art gallery) above the nav bar while open */
    .splash:has(.modal-backdrop.open, .modalART.open) {
      z-index: 200;
    }

    /* Top ornament */
    .ornament-top {
      font-family: 'Cinzel Decorative', serif;
      font-size: 28px;
      color: var(--gold);
      letter-spacing: 0.4em;
      margin-bottom: 1.2rem;
      opacity: 0.75;
      animation: fadeUp 1.5s ease forwards;
      animation-delay: 0.3s;
      opacity: 0;
    }
 /* Subtitle above title */
    .pre-title {
      font-family: 'IM Fell English', Georgia, serif;
      font-style: italic;
      font-size: clamp(15px, 2vw, 20px);
      color: var(--lavender);
      letter-spacing: 0.25em;
      text-transform: uppercase;
      margin-bottom: 0.3rem;
      animation: fadeUp 1.4s ease forwards;
      animation-delay: 0.6s;
      opacity: 0;
    }
  /* ══════════════════════════════════════════
       SVG SWIRL FRAME BORDER
       To remove the frame, delete the .frame element
       and the .frame-corner elements below.
    ══════════════════════════════════════════ */
    .frame {
      position: fixed;
      inset: -10px;
      z-index: 10;
      pointer-events: none;
    }

    .frame svg {
      width: 100%;
      height: 100%;
    }

