
        :root {
            --gold: #d4844c;
            --gold2: #ffb88c;
            --gold-glow: #e7c96a;
            --rose-glow: #ff6aaa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Sofadi One", system-ui;
            color: #f5e6d3;
            background-color:rgba(34, 19, 1, 1);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Background Video */
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            opacity: 0.3;
        }

        /* Background Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(205, 127, 50, 0.1) 0%, transparent 50%), 
                        radial-gradient(circle at 80% 80%, rgba(184, 115, 51, 0.1) 0%, transparent 50%), 
                        rgba(26, 15, 8, 0.85);
            z-index: 1;
            pointer-events: none;
        }
 
.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, 70px);
color: rgba(217, 163, 241, 0.8); 
font-weight: 900;

}
.ambrosia-thick {
font-family: "Ambrosia", serif;
font-size: clamp(80px, 1.2vw, 100px);

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, 160px);
 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);
  }
}
       

        /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            position: relative;
            z-index: 1;
        }

        /* Header Section */
        .header-section {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeIn 1s ease-in;
        }

        .header-section h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            font-family: "Ambrosia", serif;
            background: linear-gradient(135deg, #ffb88c, #d4844c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px rgba(212, 132, 76, 0.3);
        }

        .header-section p {
            font-size: 2rem;
            color: #e0b89f;
            font-style: italic;
        }

        /* Content Sections */
        .content-section {
            margin-bottom: 1rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .content-section:nth-child(even) {
            direction: rtl;
        }

        .content-section:nth-child(even) > * {
            direction: ltr;
        }

        .section-text h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: rgba(255, 160, 120, 0.8); 
            text-shadow: 0 0 15px rgba(255, 184, 140, 0.3);
        }

        .section-text p {
            margin-bottom: 1.5rem;
             color: rgba(123, 221, 127, 0.8); 
            line-height: 1.8;
             font-size: 1.5rem;
        }

        .section-image {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin: auto;
            width:min(460px, 540px);
            box-shadow: 0 0 30px rgba(212, 132, 76, 0.4);
            border: 2px solid #d4844c;
            cursor: pointer;
        }

        .section-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .section-image:hover img {
            transform: scale(1.05);
        }

        /* Decorative Elements */
        .mystical-divider {
            text-align: center;
            margin: 2rem 0;
            font-size: 1.5rem;
            color: #d4844c;
            opacity: 0.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .feature-card {
            /*background: rgba(212, 132, 76, 0.1);*/
             background: rgba(34, 87, 61, 0.15);
            border: 2px solid #d4844c;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            /* background: rgba(212, 132, 76, 0.2);
            box-shadow: 0 0 20px rgba(212, 132, 76, 0.3);*/

                   background: rgba(34, 87, 61, 0.25);
            box-shadow: 0 0 20px rgba(52, 130, 95, 0.4);
            transform: translateY(-5px);
        }

        .feature-card h3 {
          color: #ffb88c;
           
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .feature-card p {
            color: #e0b89f;
            /*color: #74c69d;*/ 
        }

              /* Modal/Lightbox Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 200;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 15, 8, 0.95);
            backdrop-filter: blur(5px);
            animation: fadeIn 0.3s ease;
            overflow: auto;
        }

        .modal.active {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            position: relative;
            width: 95vw;
            height: 95vh;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 0 50px rgba(212, 132, 76, 0.6);
            border: 2px solid #d4844c;
            animation: zoomIn 0.3s ease;
            margin: auto;
        }

        .modal-content img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2rem;
            font-weight: bold;
            color: #ffb88c;
            cursor: pointer;
            background: rgba(212, 132, 76, 0.3);
            border: 2px solid #ffb88c;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            z-index: 201;
        }

        .close-btn:hover {
            background: rgba(212, 132, 76, 0.6);
            transform: rotate(90deg);
        }


        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .header-section h1 {
                font-size: 2rem;
            }

            .content-section {
                grid-template-columns: 1fr;
            }

            .content-section:nth-child(even) {
                direction: ltr;
            }

            .section-text h2 {
                font-size: 2.8rem;
            }

            main {
                padding: 2rem 1rem;
            }

            .close-btn {
                top: 10px;
                right: 10px;
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
        }
/* NAV WRAPPER */
nav {
  position: sticky;
  top: 0px;
  z-index: 50;
  margin: 0 auto;
  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(--gold);
      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; 
                }
}
.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; }
    }

/* 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;
  margin-bottom: 20px;     /* slight side spacing on mobile */
}

/* Responsive image */
.shell-divider{
  display: block;
  width: 100%;
  height: auto;        /* preserves aspect ratio */
}
.drop-cap {
  float: left;
  font-family: "A780-Deco", serif;
  font-size: 3.5em;
  font-weight: bold;
  line-height: 0.8;
  color:ghostwhite;
  margin-right: 0.15em;
  margin-top: 0.05em;
}
.drop-capshadow {
  float: left;
   font-family: "ambrosia", serif;
  font-size: 4em;
  font-weight: bold;
  line-height: 0.8;
  margin-right: 0.1em;
  background-color: #1a1a1a;
  color: #fff;
  padding: 0.1em 0.2em;
  border-radius: 4px;
}
#peachmenu { 
    color: rgba(252, 213, 43, 0.8); 
}

        /* Decorative Elements */
        .mystical-divider {
            text-align: center;
            margin: 2rem 0;
            font-size: 2.2rem;
            color: #d4844c;
            opacity: 0.6;
        }


