

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box; }

    :root {
      --void:       #04020c;
      --deep:       #0b0520;
      --amethyst:   #6b2fa0;
      --violet:     #9b4fd8;
      --lavender:   #c89eff;
      --lavender-lite:#d287fb;
      --gold:       #e8c84a;
      --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;

 --mamatwin: url("../img-m/dawnandyasa.png");

  --parchment:#f4ead2;
      --ink:#1f1a14;
      --card: rgba(255, 160, 120, 0.8); 
     

        --radius: 16px;
    --border: rgba(255,255,255,.18);
    --border-2: rgba(255,255,255,.28);
    --glass: rgba(7, 85, 242, 0.3);
    --shadow: 0 10px 30px rgba(0,0,0,.35);

        }

        body {
            width: 100%;
            height: 100vh;
            overflow-y: visible;
           font-family: "Sofadi One", system-ui;
            background: #000;

        }

    .splash {
      position: sticky;
      inset: 0;
      top: 200px;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem 2rem;
      text-align: center;
    }
   .frame {
      position: fixed;
      inset: -10px;
      z-index: 10;
      pointer-events: none;
    }

    .frame svg {
      width: 100%;
      height: 100%;

    }    main {
      width: min(1100px, 100%);
      margin:0 auto;
      padding: 28px 16px 80px;
      position:relative;
      z-index:1;
      color:#efeaff;
    }

        /* Background with soft spiral design */
        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #FFD4A3 0%, #FFBB86 50%, #FFA366 100%);
            z-index: 1;
            overflow: hidden;
        }

        /* Soft spiral SVG background 
        .spiral-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            opacity: 0.15;
            z-index: 1;
        }*/
/* Soft spiral SVG background */
.spiral-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    opacity: 0.15;
    z-index: 1;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
        /* Content area */
        .content {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            padding: 40px;
            text-align: center;
        }

        .content h1 {
            font-size: 3em;
            color: #8B4513;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .content p {
            font-size: 1.2em;
            color: #A0522D;
            max-width: 600px;
            line-height: 1.6;
        }

        /* Full screen video container */
        .video-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
            pointer-events: none;
             /**/ background: #0a0a15;
            overflow: hidden;
        }

        .video-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 15% 20%, rgba(100, 150, 255, 0.4) 0%, transparent 15%),
                radial-gradient(circle at 85% 30%, rgba(150, 100, 255, 0.3) 0%, transparent 12%),
                radial-gradient(circle at 25% 75%, rgba(100, 200, 255, 0.35) 0%, transparent 18%),
                radial-gradient(circle at 70% 60%, rgba(200, 100, 255, 0.3) 0%, transparent 16%),
                radial-gradient(circle at 45% 10%, rgba(100, 255, 200, 0.25) 0%, transparent 14%),
                radial-gradient(circle at 80% 80%, rgba(255, 150, 100, 0.3) 0%, transparent 13%),
                radial-gradient(circle at 10% 50%, rgba(100, 100, 255, 0.3) 0%, transparent 15%),
                radial-gradient(circle at 60% 40%, rgba(200, 150, 255, 0.35) 0%, transparent 17%);
            background-size: 100% 100%;
            animation: particleFloat 15s ease-in-out infinite;
            z-index: 1;
            pointer-events: none;
        }

        @keyframes particleFloat {
            0% {
                opacity: 0.3;
                transform: translate(0, 0) scale(1);
            }
            25% {
                opacity: 0.5;
                transform: translate(-20px, -30px) scale(1.1);
            }
            50% {
                opacity: 0.7;
                transform: translate(30px, 20px) scale(0.95);
            }
            75% {
                opacity: 0.5;
                transform: translate(-15px, 25px) scale(1.05);
            }
            100% {
                opacity: 0.3;
                transform: translate(0, 0) scale(1);
            }
        }

        /* Mandala explosion container */
        .mandala-container {
            position: fixed;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            z-index: 11;
            pointer-events: none;
            opacity: 1;
            transform: translate(-50%, -50%);
        }

        .mandala {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 100px;
            margin-left: -50px;
            margin-top: -50px;
            opacity: 0;
        }

        .mandala svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0 0 10px rgba(100, 150, 255, 0.6));
        }

        @keyframes explodeMandala {
            0% {
                opacity: 1;
                transform: translate(0, 0) scale(1) rotate(0deg);
            }
            100% {
                opacity: 0;
                transform: translate(var(--tx), var(--ty)) scale(0.1) rotate(720deg);
            }
        }

        .mandala.exploding {
            animation: explodeMandala 1.5s ease-out forwards;
        }

        /* Left curtain (left half of video) */
        .curtain-left {
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            overflow: hidden;
            background: #000;
            z-index: 2;
        }

        /* Right curtain (right half of video) */
        .curtain-right {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            overflow: hidden;
            background: #000;
            z-index: 2;
        }

        /* Single video element */
        .curtain-left video,
        .curtain-right video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            background: #000;
        }

        .curtain-left video {
            width: 200%;
            height: 100%;
            object-fit: cover;
            margin-left: 0;
        }

        .curtain-right video {
            width: 200%;
            height: 100%;
            object-fit: cover;
            margin-left: -100%;
        }

        /* Animation for opening video curtains */
        @keyframes openCurtainLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        @keyframes openCurtainRight {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(100%);
            }
        }

        .curtain-left.open {
            animation: openCurtainLeft 1.5s ease-in-out forwards;
        }

        .curtain-right.open {
            animation: openCurtainRight 1.5s ease-in-out forwards;
        }

        /* Hide video container after animation */
        .video-container.hidden {
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.1s ease-out;
        }

        /* Click instruction */
.click-instruction {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: 600;
    font-size: 1.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 160, 120, 0.8);
    z-index: 15;
    animation: pulse 1.5s ease-in-out infinite;
    pointer-events: auto;
    filter: drop-shadow(0 0 15px rgba(255, 160, 120, 0.7));
}



        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .click-instruction.hidden {
            display: none;
        }
        

        /* Main Content */
        .content-wrapper {
            top:300px;
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

.section-title {
font-size: clamp(45px, 1.2vw, 55px);
color:#fff;
font-weight: 900;

}
.niconne-regular {
  font-family: "Niconne", cursive;
  font-size: 160px;
  color:var(--green-glow);
  font-weight: 400;
  font-style: normal;
}

.sofadi-one-regular {
  font-family: "Sofadi One", system-ui;
font-size: clamp(30px, 1.2vw, 40px);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Ambrosia";
  src: url('../fonty-m/Ambrosia.woff') format('woff2'),
font-weight: 900;
  font-style: normal;
}
.ambrosia {
font-family: "Ambrosia", serif;
font-size: clamp(80px, 1.2vw, 100px);
font-style: normal;

}
.ambrosia-pink {
font-family: "Ambrosia", serif;
font-size: clamp(55px, 1.2vw, 60px);
color: rgba(217, 163, 241, 0.8); 
font-weight: 900;

}
.ambrosia-thick {
font-family: "Ambrosia", serif;
font-size: clamp(75px, 1.2vw, 80px);
text-decoration: none;
font-weight: 900;

}
@font-face {
  font-family: "AltenglischMF";
  src: url('../fonty-m/AltenglischMF.woff') format('woff2'),
font-weight: 20;
  font-style: normal;
}
.AltenglischMF {
  font-family: "AltenglischMF", serif;
font-size: clamp(40px, 1.2vw, 50px);
 
  font-style: normal;

}
@font-face {
  font-family: "A780-Deco";
  src: url('../fonty-m/A780-Deco.woff') format('woff2'),
 font-weight: 900;
  font-style: normal;
}
.A780-Deco {
  font-family: "A780-Deco", serif;
font-size: clamp(140px, 2.2vw, 190px);
 color:#fff;
 font-weight: 900;
  font-style: italic;

}
   .A780-Deco-effect {
  font-family: "A780-Deco", system-ui;
  font-size: clamp(100px, 2.2vw, 190px);
  font-weight: 900;
  color:#fff;
  font-style: italic;

  -webkit-text-stroke: 1.5px #ffffff;
  animation: mysticalStroke 15s ease-in-out infinite;
}

@keyframes mysticalStroke {
  0% {
    text-shadow: 0 0 30px #ffb3d9, 0 0 60px #ffb3d9, 0 0 90px rgba(255, 179, 217, 0.4);
  }
  20% {
    text-shadow: -3px -3px 0 #000000, 3px -3px 0 #000000, -3px 3px 0 #000000, 3px 3px 0 #000000, -2px -2px 0 #000000, 2px -2px 0 #000000, -2px 2px 0 #000000, 2px 2px 0 #000000, -1px -1px 0 #000000, 1px -1px 0 #000000, -1px 1px 0 #000000, 1px 1px 0 #000000, 0 0 30px #b3d9ff, 0 0 60px #b3d9ff, 0 0 90px rgba(179, 217, 255, 0.4);
  }
  40% {
    text-shadow: 0 0 30px #c9b3ff, 0 0 60px #c9b3ff, 0 0 90px rgba(201, 179, 255, 0.4);
  }
  60% {
    text-shadow: 0 0 30px #b3ffd9, 0 0 60px #b3ffd9, 0 0 90px rgba(179, 255, 217, 0.4);
  }
  80% {
    text-shadow: 0 0 30px #ffe6b3, 0 0 60px #ffe6b3, 0 0 90px rgba(255, 230, 179, 0.4);
  }
  100% {
    text-shadow: 0 0 30px #ffb3d9, 0 0 60px #ffb3d9, 0 0 90px rgba(255, 179, 217, 0.9);
  }
}

     /* Hero Section */
        .hero {
            position: relative;
            margin-bottom: 6px;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 0px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .hero-media {
            width: 100%;
            height: 900px;
            background-image: var(--mamatwin);
    background-size: cover;
    background-position: center;
     background-repeat:no-repeat;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            margin-top: 30px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
            font-size: 18px;
            font-weight: 300;
            text-align: center;

    
        }
        .hero h1 {
            color: #ffffff;
            font-size: 48px;
             font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;  
               color:var(--teal-glow);
            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: 25px;
            line-height: 1.6;
            font-weight: 300;
       }

        #hero-white{
          color:#fff; 
     }

        #hero-orange{
          color: rgba(255, 160, 120, 0.8); 
       

}        #hero-peach{
          color: rgba(192, 73, 246, 0.8);
         }

        #hero-pink{
          color: rgba(217, 163, 241, 0.8); 

} 
        }
        #hero-red-large{
          color: rgba(255, 255, 255, 0.85);
        }
    /* Main Content */
        .hero-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            margin: 0 auto;
            padding: 40px 20px;
       }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

         

            .hero-media {
                height: 300px;
            }
}
.sticky-footer{
    position: relative;
    font-family: "Sofadi One", system-ui;
    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; }
    }

/* NAV WRAPPER */
nav {
  position: sticky;
  top: 0px;
  z-index: 50;
  margin: -50px auto 0; /* pulls nav flush to the top of the glass panel, offsetting
                            the 40px .hero-wrapper padding + 14px .content padding above it */
  width: 100%;
 
  border-radius: 18px;
  padding: 10px 10px 10px 18px;
  background: linear-gradient(180deg, rgba(40,25,10,.85), rgba(15,8,3,.75)),
              linear-gradient(135deg, rgba(210,140,60,.40) 0%, rgba(210,140,60,.28) 40%, transparent 80%);
  border: 1px solid rgba(231,168,72,.50);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 
              inset 0 0 0 1px rgba(231,168,72,.22), 
              0 0 0 1px rgba(231,168,72,.18);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

/* Corner filigree-ish glow */
nav::before {
  content: "";
  position: absolute;
  inset: -60px;
  background:
    /* Top-left: Warm golden-orange spreading right */
    radial-gradient(450px 140px at 15% 10%, rgba(231,168,72,.40), rgba(231,168,72,.18), transparent 70%),
    /* Top-right: Much deeper purple spreading left horizontally */
    radial-gradient(600px 120px at 85% 8%, rgba(60,20,120,.55), rgba(40,10,100,.32), transparent 70%),
    /* Bottom-left: Much deeper green spreading right horizontally */
    radial-gradient(550px 160px at 10% 95%, rgba(40,140,30,.58), rgba(50,110,30,.25), transparent 65%),
    /* Bottom-right: Much deeper green spreading left horizontally */
    radial-gradient(550px 160px at 90% 95%, rgba(50,150,40,.56), rgba(30,120,25,.22), transparent 65%);
  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;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  color: rgba(246,239,255,.92);
  margin-top: 10px;
}

.brand-title b {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: .06em;
  color: var(--gold2);
  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(--gold-glow);
  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: stretch;
    margin-top: 10px;
 
  }

  nav.open .nav-links {
    display: flex;
  }

 nav.open .nav-links .pill {
  position: relative;
  width: 100%;
  opacity: 1;
  text-align: center;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(200, 170, 230, 0.4);
  background: rgba(42, 3, 73, 0.95);
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
  overflow: hidden;
  touch-action: manipulation;
}

nav.open .nav-links .pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 6s infinite;
  pointer-events: none;
  left: -100%;
}

nav.open .nav-links .pill:hover {
  color: #fff;
  border-color: rgba(255, 217, 138, 0.7);
  background: rgba(255, 217, 138, 0.12);
  box-shadow: 0 0 24px rgba(232, 200, 74, 0.25);
  transform: translateY(-1px);
}

nav.open .nav-links .pill:active {
  transform: translateY(0) scale(0.98);
}

  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;
      z-index: 1000;
      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;
      align-items: start;
      justify-items: center;
      padding: var(--nav-h, 90px) 18px 10px;
      overflow-y: auto;

      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-card{
      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-card{
      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: 'Sofadi One', serif;
      font-size: 1rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--rose);
      opacity: .8;
      margin-bottom: 6px;
    }

    .modal-title{
      font-family: 'Ambrosia', serif;
      font-weight: 900;
      letter-spacing:.04em;
      text-transform: uppercase;
      font-size: 3rem;
      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: 'Niconne', Georgia, serif;
      font-style: normal;
      font-size: 2rem;
      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;
      max-height: calc(100dvh - var(--nav-h, 90px) - 30px);
      overflow-y: auto;
    }

    /* ── Membership form ── */
    .form-members{
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .form-group{
      text-align: center;
    }

    .form-group label{
      display: block;
      font-family: 'Sofadi One', serif;
      font-size: 15px;
      letter-spacing: .04em;
      color: var(--gold-pale, #f5e4a0);
      margin-bottom: 8px;
    }
.form-group input{
      display: block;
      width: 100%;
      max-width: 340px;
      margin: 0 auto;
      padding: 14px 16px;
      font-size: 17px;
      text-align: center;
      font-family: 'Sofadi One', Georgia, serif;
      color: #fff;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(200,170,230,0.4);
      border-radius: 12px;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .form-group input::placeholder{
      color: rgba(255,255,255,0.4);
    }

    .form-group input:focus{
      border-color: rgba(232,200,74,0.7);
      box-shadow: 0 0 16px rgba(232,200,74,0.25);
    }

    .form-group .hint{
      display: block;
      margin-top: 8px;
      font-size: 13px;
      font-style: italic;
      color: rgba(200,158,255,.75);
    }

    .donation-section > label{
      font-family: 'Sofadi One', serif;
      font-size: 15px;
      color: var(--gold-pale, #f5e4a0);
      display: block;
      margin-bottom: 12px;
    }

    .donation-pending{
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(231,201,106,.18);
      text-align: center;
    }

    .donation-pending-text{
      font-family: 'Sofadi One', Georgia, serif;
      font-style: italic;
      font-size: 14px;
      color: rgba(200,158,255,.9);
      line-height: 1.5;
      margin-bottom: 14px;
    }

    .donation-pending-cancel{
      display: block;
      margin: 10px auto 0;
      background: none;
      border: none;
      color: rgba(255,255,255,0.55);
      font-family: 'Sofadi One', serif;
      font-size: 12px;
      letter-spacing: .05em;
      text-decoration: underline;
      cursor: pointer;
    }

    .donation-pending-cancel:hover{
      color: rgba(255,255,255,0.85);
    }

    .donation-pending-note{
      margin-top: 12px;
      font-size: 11px;
      color: rgba(255,255,255,0.4);
      line-height: 1.5;
    }

    /* ── QR codes ── */
    .qr-code-container{
      display: grid;
      gap: 16px;
      grid-template-columns: 1fr 1fr;
      justify-content: center;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(231,201,106,.18);
    }

    .qr-code-box{
      text-align: center;
    }

    .qr-label{
      color: #a0f5f0;
      font-size: 13px;
      font-family:  system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;  
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 10px;
    }

    .qr-placeholder{
      width: 100%;
      max-width: 110px;
      aspect-ratio: 1;
      margin: 0 auto;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(0,212,200,0.3);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .qr-placeholder img{
      max-width: 90%;
      max-height: 90%;
      border-radius: 4px;
    }

    .auth-grid{
      display:grid;
      gap: 10px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 520px){
      .auth-grid{ grid-template-columns: 1fr 1fr; 
      }
    }
.member {

  background: rgba(6, 50, 2, 0.8)!important;

}
  .pill {
  position: relative;
  opacity: 0.7;
  text-align: center;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(200, 170, 230, 0.4);
  background: rgba(42, 3, 73, 0.8);
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
  overflow: hidden;
  touch-action: manipulation;
}

.pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 6s infinite;
  pointer-events: none;
  left: -100%;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.pill:hover {
  color: #fff;
  border-color: rgba(255, 217, 138, 0.7);
  background: rgba(255, 217, 138, 0.12);
  box-shadow: 0 0 24px rgba(232, 200, 74, 0.25);
  transform: translateY(-1px);
}

.pill:active {
  transform: translateY(0) scale(0.98);
}

.pill-pay {
  border-color: rgba(0, 212, 200, 0.4);
  color: #a0f5f0;
}

.pill-pay:hover {
  border-color: rgba(0, 255, 238, 0.65);
  background: rgba(0, 212, 200, 0.12);
  box-shadow: 0 0 24px rgba(0, 212, 200, 0.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; 
                }

  .description{
   width:100%;
    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(0, 0, 0, 0.8);
      font-weight: 700;
  border-radius: 10px;
      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: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;  
    font-weight: 500;
     
       width: min(560px, 60vw);
      color:rgba(241, 191, 217, 0.8);
      opacity: 1.9;
     
  }

  }

  .content-box{
    width: min(1400px, 100%);
    margin: 20px auto;
    padding: clamp(14px, 2.2vw, 18px);
    border-radius: var(--radius);
    background: var(--glass);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
     display: flex;
  flex-direction: column;
  align-items: center;
  }
    .wrap {
  max-width: 1800px;
  margin: 0 auto;
  padding: 28px 18px 56px;
  background: transparent; /* Make sure this isn't overriding */
}
    h1{ margin:0 0 18px; letter-spacing:.2px; 
    }
  .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  place-items: center;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
 .card {
      background:var(--card);
      border:1px solid var(--border);
      border-radius:14px;
      overflow:hidden;
      box-shadow:0 8px 18px rgba(0,0,0,.04);
      display:flex;
      flex-direction:column;
    }
    .thumb{
      aspect-ratio:1/1;
      background:#efe1c0;
    }
    .thumb img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .content{
      padding:14px 14px 16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      flex:1;
    }
    .title{

      font-weight:650;
      line-height:1.2;
      font-size:15px;
      min-height:2.4em;
    }
.btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(76, 175, 80, 0.7);
  backdrop-filter: blur(12px);
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 800;
  border: 0.5px solid rgba(38, 45, 36, 0.8);
  box-shadow: 
    0 8px 32px rgba(76, 175, 80, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.btn:hover {
  background: rgba(76, 175, 80, 0.85);
  border-color: rgba(150, 240, 160, 0.9);
  box-shadow: 
    0 8px 32px rgba(76, 175, 80, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}



    .grain{
      pointer-events:none;
      position:fixed;
      inset:0;
      background-image:radial-gradient(rgba(0,0,0,.03) 1px, transparent 1px);
      background-size:24px 24px;
      opacity:.25;
      mix-blend-mode:multiply;
    }


        /* Decorative Elements */
        .mystical-divider {
            text-align: center;
            margin: 2rem 0;
            font-size: 2.5rem;
            color: #d4844c;
            opacity: 0.6;
        }


/* Wrapper/container that holds the divider */
.shell-divider-wrap{
  width: 100%;
  max-width: 900px;   /* adjust as desired */
  margin: 0 auto;      /* center on desktop */
  padding: 0 12px;     /* slight side spacing on mobile */
}

/* Responsive image */
.shell-divider{
  display: block;
  width: 100%;
  height: auto;        /* preserves aspect ratio */
}
/* Wrapper/container that holds the divider */
.mand-divider-wrap{
  width: 100%;
  max-width: 500px;   /* adjust as desired */
  margin: 0 auto;      /* center on desktop */
  padding: 0 12px;     /* slight side spacing on mobile */
}

/* Responsive image */
.mand-divider{
  display: block;
  width: 100%;
  height: auto;        /* preserves aspect ratio */
}
/* Green themed "Glass" bordered text box */
.glass-box{
  max-width: 40rem;
  width: 100%;
  padding: 1rem 1.25rem;
  margin: auto;

  /* Glass look (green tint) */
  background: rgba(6, 50, 2, 0.8);
  border: 1px solid rgba(110, 231, 183, 0.35);
  border-radius: 16px;

  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);

  /* Crisp glass blur */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  /* Optional: subtle highlight */
  position: relative;
  overflow: hidden;
}

/* Optional glossy sheen */
.glass-box::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    600px 200px at 20% 0%,
    rgba(167, 243, 208, 0.28),
    transparent 60%
  );
}

.glass-box .text{
  max-height: 3.5em; /* tune */
  overflow: hidden;
  overflow-wrap: break-word;
}


