<!-- ======= ✅ ✅ ✅ ✅ ✅ MAIN STYLE SECTION ======= -->
 
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

body {
  font-family: 'Roboto', sans-serif;
  color: #fff;

  background:
    /* 🔽 toned-down warm glow */
    radial-gradient(
      ellipse at 50% 35%,
      rgba(255, 150, 60, 0.22),
      rgba(255, 110, 30, 0.12),
      rgba(0, 0, 0, 0.4)
    ),

    /* 🔽 stronger dark overlay */
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.75)
    ),

    /* image */
    url("/images/hero-sunset.webp") center top / cover no-repeat;

  background-attachment: fixed;
}






/* ✅  LOGO */
header {
  padding-top: -150px;     /* 👈 NO MORE THAN THIS */
  padding-bottom: 16px;
  text-align: center;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.1)
  );

  border-bottom: 1px solid rgba(255, 200, 120, 0.25);
}




    



header img {
  display: block;
  width: 300px;
  max-width: 90vw;
  margin: 0 auto -100px;   /* 🔥 NEGATIVE margin pulls text UP */

  line-height: 0;

  filter:
    drop-shadow(0 0 18px rgba(255,180,90,0.6))
    drop-shadow(0 0 35px rgba(255,140,60,0.35));
}


header h1 {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: 3.4rem;
  color: #ffe1b3;

  letter-spacing: 1.5px;
  line-height: 1;

  text-shadow:
    0 2px 12px rgba(0,0,0,0.7),
    0 0 30px rgba(255,170,80,0.35);
}



header h3 {
  margin-top: 6px;
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffbe7a;
  letter-spacing: 0.8px;
}




header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 180px;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 200, 120, 0.8),
    transparent
  );
}

/*✅  */
    .intro-section {
      text-align: center;
      margin: 10px auto 10px;
      max-width: 600px;
      padding: 0 20px;
    }

    .intro-section p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #f5f5f5;
    }
    
    .intro-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffd7a0;
  text-align: center;
  margin: 30px auto 50px;
  max-width: 800px;
}


/*✅  */
    .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px;
      padding: 30px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

/*✅  */
.card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0.01)
  );

  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 28px;

  border: 1px solid rgba(255, 200, 120, 0.18);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.55),
    inset 0 0 25px rgba(255, 160, 80, 0.05);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}


.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 25px 55px rgba(0,0,0,0.75),
    0 0 35px rgba(255, 160, 80, 0.25);
}


.card h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: #ffcc88;
  margin-bottom: 14px;
}


    .card input, .card button, .card a {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border-radius: 6px;
      border: none;
      font-size: 1rem;
    }
.blog-section .card a,
.blog-list li a {
  width: auto;
  margin: 0;
}

    .card input {
      background-color: #fff;
      color: #000;
    }

    .card button, .card a {
  background: linear-gradient(135deg, #ffb347, #ff7b00);
  color: #1a0b05;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s;
      
        box-shadow:
    0 0 18px rgba(255, 150, 60, 0.6),
    inset 0 0 8px rgba(255,255,255,0.3);
    }

.card button:hover,
.card a:hover {
  background: linear-gradient(135deg, #ffd27d, #ff9a3c);
}


    .hooks div {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 10px 12px;
      margin: 6px 0;
      border-radius: 6px;
      font-size: 0.95rem;
      line-height: 1.4;
    }

/*✅  */
    .about-section img {
      width: 100%;
      max-width: 200px;
      border-radius: 10px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .about-section p {
      font-size: 0.95rem;
      line-height: 1.6;
      margin-top: 10px;
    }

/*✅  */
    .video-embed iframe {
      width: 100%;
      height: 200px;
      border: none;
      border-radius: 10px;
    }

/*✅  */
    .carousel-container {
      display: flex;
      overflow: hidden;
      width: 100%;
    }

    .carousel-track {
      display: flex;
      gap: 10px;
      animation: scroll 15s linear infinite;
    }

    .carousel-track img {
      width: 150px;
      height: auto;
      border-radius: 10px;
      flex-shrink: 0;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .testimonial-carousel p {
      font-style: italic;
      animation: fade 32s infinite;
      opacity: 0;
      position: absolute;
      max-width: 100%;
    }

    .testimonial-carousel p.active {
      opacity: 1;
      position: relative;
    }

    .testimonial-carousel {
      position: relative;
      min-height: 80px;
    }

/*✅  */
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin: 20px 0;
    }

    .social-icon {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #fff;
      transition: transform 0.3s;
    }

    .social-icon:hover {
      transform: scale(1.1);
      background: #ffa726;
      color: #000;
    }


/*✅  */
footer {
  background: #0c0705;
  border-top: 1px solid rgba(255, 200, 120, 0.2);
  color: #aaa;
}

    

/*✅  */
.date-container {
      font-size: 15px;
      margin-bottom: 1px;
    }
    
.zodiac-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  justify-items: center;
  align-items: center;
  padding-top: 10px;
}

.zodiac-images img {
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.zodiac-images img:hover {
  transform: scale(1.15);
}


/* =========================
   👑 PREMIUM POPUP SYSTEM
========================= */

.popup-overlay {
  position: fixed;
  inset: 0;

  display: none;
  justify-content: center;
  align-items: center;

  padding: 20px;
  z-index: 999999;

  background: linear-gradient(
    rgba(10,10,15,0.65),
    rgba(10,10,15,0.85)
  );

  backdrop-filter: blur(6px);
}

/* =========================
   POPUP CARD
========================= */

.popup-content {
  position: relative;

  width: 100%;
  max-width: 420px;

  padding: 32px 26px 26px 26px;
  border-radius: 22px;

  background: linear-gradient(
    145deg,
    rgba(28,28,45,0.98),
    rgba(18,18,32,0.98)
  );

  border: 1px solid rgba(255,215,160,0.25);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.8),
    0 0 30px rgba(255,180,80,0.12);

  animation: popupFade 0.25s ease;
}

/* =========================
   CLOSE BUTTON FIX
========================= */

.popup-content .close-btn {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 34px !important;
  height: 34px !important;

  padding: 0 !important;
  margin: 0 !important;

  border-radius: 50%;
  border: 1px solid rgba(255,215,160,0.35);

  background: rgba(255,215,160,0.08);
  color: #FFD7A0;

  display: flex !important;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  cursor: pointer;

  box-shadow: none !important;
}

/* Stop global width rules */
.popup-content .close-btn,
.popup-content .close-btn * {
  width: auto !important;
}

/* =========================
   TITLE
========================= */

.popup-content h3 {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: #FFD7A0;
  margin-bottom: 22px;
}

/* =========================
   INPUTS
========================= */

.popup-content input {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 14px;

  border-radius: 12px;
  border: 1px solid rgba(255,215,160,0.25);

  background: rgba(255,255,255,0.05);
  color: #fff;

  font-size: 0.95rem;
}

.popup-content input:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 12px rgba(255,215,160,0.3);
}

/* =========================
   SUBMIT BUTTON
========================= */

.popup-content .submit-btn {
  width: 100%;
  padding: 14px;

  border-radius: 16px;
  border: none;

  background: linear-gradient(135deg, #ffd27d, #ff9a3c);
  color: #1a0b05;

  font-family: 'Cinzel', serif;
  font-weight: 700;

  cursor: pointer;
  transition: 0.25s ease;
}

.popup-content .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255,180,80,0.6);
}

/* =========================
   ANIMATION
========================= */

@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;

  width: 36px;
  height: 36px;

  border-radius: 50%;
  border: 1px solid rgba(255,179,71,0.4);

  background: rgba(255,179,71,0.08);
  color: #ffb347;

  align-items: center;
  justify-content: center;

  font-size: 22px;
  cursor: pointer;
  transition: 0.25s ease;
}

.close-btn:hover {
  background: rgba(255,179,71,0.25);
}








/* Book Consultation*/
.dob-time-inline {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.dob-time-inline input[type="date"],
.dob-time-inline input[type="time"] {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #fff;
  color: #000;
}




.floating-label-group {
  position: relative;
  margin: 15px 0;
}

.floating-label-group input {
  width: 100%;
  padding: 14px 12px 14px 12px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #fff;
  color: #000;
}

.floating-label-group label {
  position: absolute;
  top: 14px;
  left: 12px;
  font-size: 1rem;
  color: #999;
  pointer-events: none;
  transition: all 0.2s ease-out;
  background: #fff;
  padding: 0 5px;
}

.floating-label-group input:focus + label,
.floating-label-group input:not(:placeholder-shown) + label,
.floating-label-group input:valid + label {
  top: -9px;
  left: 10px;
  font-size: 0.75rem;
  color: #FFA726;
}




/*------video carousel-------*/
.video-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}

.video-carousel iframe {
  flex: 0 0 auto;
  width: 300px;
  height: 180px;
  border-radius: 10px;
  scroll-snap-align: start;
  border: none;
}





.planet-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-top: 15px;
  -webkit-overflow-scrolling: touch;
}

.planet-item {
  flex: 0 0 auto;
  width: 130px;
  text-align: center;
  scroll-snap-align: start;
  cursor: pointer;
}

.planet-item img {
  width: 100%;
  height: auto;
  max-height: 120px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.planet-item:hover img {
  transform: scale(1.05);
}

.planet-item p {
  margin-top: 8px;
  font-size: 1rem;
  color: #FFD700;
  font-family: 'Cinzel', serif;
}


html {
  scroll-behavior: smooth;
}


/* */


.header-top-text {
  position: relative;        /* 🔥 important */
  top: 0;
  left: 0;

  margin-top: 6px;           /* space below heading */
  text-align: center;        /* centre aligned */

  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #ffcf9a;

  text-shadow:
    0 1px 6px rgba(0,0,0,0.6);

  z-index: 5;
}

/* ================================
   🛍️ ASTROBAZAAR – HARD LOCK BOTTOM FIX
================================ */

.astrobazaar-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;

  min-height: 100px;
  padding: 58px;

  display: flex;
  flex-direction: column;

  background:
    linear-gradient(
      rgba(255,255,255,0.05),
      rgba(255,255,255,0.05)
    ),
    url("/images/astrobazar-bg.webp") center / cover no-repeat;

  border: 1px solid rgba(255, 215, 160, 0.35);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 0 35px rgba(255,180,80,0.25);
}

/* 🔥 This spacer forces button to bottom */
.bazaar-spacer {
  flex-grow: 1;
}


/* Button */
.bazaar-btn {
  padding: 12px 20px;
  border-radius: 14px;

  background: linear-gradient(135deg, #ffd27d, #ff9a3c);
  color: #1a0b05;
  text-decoration: none;
  font-weight: bold;
  text-align: center;

  box-shadow:
    0 0 20px rgba(255, 190, 100, 0.55),
    inset 0 0 8px rgba(255,255,255,0.25);

  transition: 0.3s ease;
}

/* ================================
   🛍️ ASTROBAZAAR BACKGROUND (Permanent)
================================ */

#astrobazaar-card {
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  background:
    linear-gradient(
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.45)
    ),
    url("/images/astrobazar-bg.webp") center / cover no-repeat;

  border: 1px solid rgba(255,215,160,0.35);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.75),
    inset 0 0 30px rgba(255,180,80,0.08);
}

/* Push button to bottom */
#astrobazaar-card .bazaar-spacer {
  flex-grow: 1;
}

/* ================================
   🌟 SPECIALISATION CARD – PREMIUM FIX
================================ */
/* ================================
   👑 SPECIALISATION CARD – LEFT ALIGNED
================================ */

.specialisation-card {
  padding: 30px;
  text-align: left;   /* 🔥 Left aligned */
}

/* Heading */
.specialisation-card h2 {
  text-align: left;

}

/* List */
.specialisation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List items */
.specialisation-list li {
  position: relative;
  padding: 10px 0 10px 28px;  /* left space for bullet */
  font-size: 1rem;
  letter-spacing: 0.4px;
  color: rgba(255,235,210,0.92);

  border-bottom: 1px solid rgba(255,215,160,0.15);

  transition: 0.3s ease;
}

/* Remove border on last item */
.specialisation-list li:last-child {
  border-bottom: none;
}

/* Gold bullet */
.specialisation-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 10px;
  color: #FFD7A0;
  font-size: 0.9rem;
  filter: drop-shadow(0 0 6px rgba(255,200,120,0.5));
}

/* Hover effect */
.specialisation-list li:hover {
  transform: translateX(4px);
  color: #FFD7A0;
}



/* 🔥 Make card act as image container */
/* Card container */

/* ===============================
/* ================================
   WHAT’S BLOCKING YOU – CLEAN BUILD
   ================================ */

/* Card reset */
.blocking-card {
  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;

  padding: 0;
  margin: 0;

  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;

  overflow: hidden;
}

/* Heading */
.blocking-card > h2 {
  margin: 0;
  padding: 22px 24px;
    position: relative;
  z-index: 2;


  font-family: 'Cinzel', serif;
  color: #FFD7A0;
}

/* Media area fills remaining card space */
.blocking-media {
  position: relative;   /* ← remove relative here */
  flex: 1;              /* 🔥 THIS is the key */
  width: 100%;
  min-height: 360px;    /* safety for small cards */
}

/* Image fills media completely */
.blocking-media .image-slider {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay */
.blocking-overlay {
  position: relative;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;
  text-align: center;

  background: none;        /* ✅ no overlay color */
  box-shadow: none;        /* ✅ no shadow */
  background: transparent !important;
  
}

/* Overlay text */
.blocking-overlay h3 {
  margin: 0;
  max-width: 85%;
  margin-top: 180px;

  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: #FFD7A0;

  text-shadow: 0 2px 12px rgba(0,0,0,0.9);
}

/* Mobile */
@media (max-width: 768px) {
  .blocking-overlay h3 {
    font-size: 1.05rem;
  }
}





/* 🔥 Make card act as image container */
/* Card container */

/* ===============================
/* ================================
   WHAT’S booking YOU – CLEAN BUILD
   ================================ */

/* Card reset */
.booking-card {
  display: flex;
  flex-direction: column;


  width: 100%;
  height: 100%;

  padding: 0;
  margin: 0;

  background: none;
  border: 1px solid rgba(255, 200, 120, 0.25);
  border-radius: 18px;
  box-shadow: none;

  overflow: hidden;
}


/* Heading */
.booking-card > h2 {
  margin: 0;
  padding: 22px 24px;
    position: relative;
  z-index: 2;


  font-family: 'Cinzel', serif;
  color: #FFD7A0;
}

/* Media area fills remaining card space */
.booking-media {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 320px;    /* safety for small cards */
}


/* Image fills media completely */
.booking-media .image-slider {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay */
.booking-overlay {
  position: relative;
  z-index: 2;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 24px;
  text-align: center;

  background: none;        /* ✅ no overlay color */
  box-shadow: none;        /* ✅ no shadow */
    background: transparent !important;

}

/* Overlay text */
.booking-overlay h3 {
  margin: 0;
  max-width: 85%;
  margin-top: 80px;

  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: #FFD7A0;

text-shadow: 0 1px 0 rgba(0,0,0,0.95), 0 -1px 0 rgba(0,0,0,0.95), 1px 0 0 rgba(0,0,0,0.95), -1px 0 0 rgba(0,0,0,0.95), 0 2px 10px rgba(0,0,0,0.85), 0 10px 26px rgba(0,0,0,0.75);
}

/* Mobile */
@media (max-width: 768px) {
  .booking-overlay h3 {
    font-size: 1.5rem;
  }
}

.booking-card button {
  margin-top: auto;
  z-index: 5;
}




.booking-media .image-slider {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}




/* Login button */

.user-greeting {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 99999;

  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.6px;

  color: #FFD7A0;
  background: rgba(24, 38, 69, 0.55);
  padding: 8px 14px;
  border-radius: 999px;

  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);

}

.user-name {
  font-size: 18px;
  margin-left: 6px;
}

.badge {
  margin-left: 8px;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 20px;
}

.badge.premium {
  background: linear-gradient(135deg, gold, orange);
  color: #000;
}

.badge.normal {
  background: rgba(255,255,255,0.15);
}



/* =====================
   SIGNUP MODAL
===================== */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 42, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.modal-card {
  background: linear-gradient(145deg, #0A0E2A, #141E3C);
  border-radius: 18px;
  padding: 28px 24px;
  width: 100%;
  max-width: 360px;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.8),
    inset 0 0 25px rgba(255,180,80,0.08);

  border: 1px solid rgba(255,200,120,0.25);
  text-align: center;
}

.modal-card h3 {
  font-family: 'Cinzel', serif;
  color: #FFD7A0;
  margin-bottom: 18px;
}

.modal-card input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
}

.modal-card button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  cursor: pointer;

  background: linear-gradient(135deg, #ffb347, #ff7b00);
  color: #1a0b05;

  box-shadow:
    0 0 18px rgba(255,150,60,0.6),
    inset 0 0 8px rgba(255,255,255,0.3);
}





.signup-btn {
  top: 60px;
  right: 30px;

  padding: 10px 18px;
  border-radius: 20px;
  border: none;

  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  cursor: pointer;

  background: linear-gradient(135deg, gold, orange);
  color: #000;

  box-shadow:
    0 0 14px rgba(255,180,80,0.6);
}




/* =====================
   Premium card
===================== */

.premium-only.locked .premium-content {
  filter: blur(6px);
  pointer-events: none;
    display: flex;
  flex-direction: column;
  justify-content: flex-start;   /* 🔥 removes bottom empty space */
}

.premium-only {
  position: relative;
}

.premium-content li {
  list-style: none;
  margin: 6px 0;
  padding: 0;
}






.locked {
  position: relative;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,42,0.35); /* was 0.65 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: gold;
  border-radius: 18px;
  z-index: 5;
}





/* ===== AUTH BUTTONS ===== */

.auth-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Base button */
.auth-btn {
  padding: 10px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 215, 160, 0.55);
  background: rgba(255, 215, 160, 0.08);
  color: #FFD7A0;

  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  cursor: pointer;
  letter-spacing: 0.5px;

  transition: all 0.25s ease;
}

/* Hover */
.auth-btn:hover {
  background: rgba(255, 215, 160, 0.18);
  transform: translateY(-1px);
}

/* Login specific */
.auth-btn.login {
  border-color: rgba(180, 200, 255, 0.5);
  color: #cfe0ff;
}

/* Signup highlight */
.auth-btn.signup {
  border-color: rgba(255, 200, 120, 0.9);
  background: linear-gradient(
    135deg,
    rgba(255, 200, 120, 0.35),
    rgba(255, 160, 80, 0.25)
  );
  color: #fff;
}

/* Logout warning style */
.auth-btn.logout {
  border-color: rgba(255, 120, 120, 0.6);
  color: #ffb3b3;
  background: rgba(255, 120, 120, 0.1);
}

.auth-btn.logout:hover {
  background: rgba(255, 120, 120, 0.2);
}





.header-top-text {
  font-size: 0.75rem;
  color: #ccc;
}

/* RIGHT */
.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;

  margin-top: 10px;   /* 👈 pushes it slightly down */
  margin-bottom: -60px;   /* 👈 ensures no bottom space */
    margin-right: 30px;   /* 👈 pushes it slightly down */

}



.modal-overlay {
  position: fixed;
  inset: 0;

  background:
    linear-gradient(
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.85)
    );

  backdrop-filter: blur(6px);

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}




.modal-box {
  background: #0A0E2A;
  padding: 32px;
  width: 95%;
  max-width: 480px;
  border-radius: 18px;
  text-align: center;
  color: #FFD7A0;
    max-height: 85vh;
  overflow-y: auto;

  border: 1px solid rgba(255, 215, 160, 0.25);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.7),
    inset 0 0 25px rgba(255,180,80,0.08);
}


.modal-box input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid rgba(255,215,160,0.3);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 0.95rem;
}
.modal-overlay {
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.modal-box button {
  width: 100%;
  padding: 12px;
  background: #FFD7A0;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
}



.welcome-text {
  font-family: 'Playfair Display', 'Cinzel', serif;
  font-size: 0.98rem;
  line-height: 1.85;
  color: #e9e9e9;
  text-align: center;
  letter-spacing: 0.4px;
}

.welcome-text strong {
  color: #FFD7A0;
  font-weight: 600;
}

.welcome-text span {
  color: #FFD7A0;
  font-style: italic;
}

.welcome-text .signature {
  display: block;
  margin-top: 6px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: #cfae78;
  font-style: italic;
}







.welcome-card {
  max-width: 900px;
  margin: 40px auto;
  padding: 28px 32px;

  background: linear-gradient(
    135deg,
    rgba(255, 215, 160, 0.08),
    rgba(255, 255, 255, 0.02)
  );

  border: 1px solid rgba(255, 215, 160, 0.25);
  border-radius: 16px;

  backdrop-filter: blur(6px);
}

.welcome-card h3 {
  margin-bottom: 14px;
  font-family: 'Cinzel', serif;
  color: #FFD7A0;
  font-size: 1.5rem;
}

.welcome-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #eaeaea;
  margin-bottom: 10px;
}

.welcome-card .blessing {
  margin-top: 14px;
  font-style: italic;
  color: #cfcfcf;
}





/* ================================
   REMEDIES PORTAL BACKGROUND IMAGE
   ================================ */

.remedies-card {
  position: relative;
  overflow: hidden;

  background: 
    linear-gradient(
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.45)
    ),
    url("/images/remedies-bg.webp") center / cover no-repeat;

  border: 1px solid rgba(255,215,160,0.35);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.75),
    inset 0 0 30px rgba(255,180,80,0.08);
}

.remedies-card {
  display: flex;
  flex-direction: column;
}

.remedies-card .premium-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.remedies-card .premium-content a:last-child {
  margin-top: auto;
}


/* ================================
   🔒 PREMIUM LOCKED CARD – LUXURY STYLE
   ================================ */

/* Base locked card */
.card.locked {
  background: radial-gradient(
      ellipse at top,
      rgba(255, 200, 120, 0.12),
      rgba(10, 14, 42, 0.92)
    ),
    linear-gradient(
      180deg,
      #050814,
      #0a0e2a
    );

  border: 1px solid rgba(255, 215, 160, 0.45);
  box-shadow:
    0 0 35px rgba(255, 180, 90, 0.25),
    0 0 85px rgba(255, 150, 60, 0.18),
    inset 0 0 30px rgba(0, 0, 0, 0.9);

  position: relative;
  overflow: hidden;

  animation: premiumGlow 1s ease-in-out infinite;
}

/* Premium glow animation */
@keyframes premiumGlow {
  0% {
    box-shadow:
      0 0 25px rgba(255, 180, 90, 0.25),
      inset 0 0 25px rgba(0, 0, 0, 0.9);
  }
  50% {
    box-shadow:
      0 0 55px rgba(255, 200, 120, 0.55),
      0 0 110px rgba(255, 150, 60, 0.25),
      inset 0 0 35px rgba(0, 0, 0, 0.95);
  }
  100% {
    box-shadow:
      0 0 25px rgba(255, 180, 90, 0.25),
      inset 0 0 25px rgba(0, 0, 0, 0.9);
  }
}

/* Blur content behind lock */
.card.locked .premium-content {
  filter: blur(7px) brightness(0.6);
  pointer-events: none;
}

/* Lock overlay */
.card.locked .lock-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(10, 14, 42, 0.85),
      rgba(0, 0, 0, 0.92)
    );

  backdrop-filter: blur(8px);

  border-radius: 18px;

  color: #FFD7A0;
  text-align: center;

  box-shadow:
    inset 0 0 40px rgba(255, 180, 80, 0.15),
    0 0 60px rgba(255, 180, 80, 0.35);

  font-family: 'Cinzel', serif;
}

/* Lock text */
.card.locked .lock-overlay small {
  font-size: 0.85rem;
  color: #ffcf9a;
  letter-spacing: 0.6px;
}

/* Optional premium crown effect */
.card.locked::before {
  content: "👑 PREMIUM";
  position: absolute;
  top: 14px;
  right: 18px;

  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 1px;

  padding: 6px 12px;
  border-radius: 999px;

  background: linear-gradient(135deg, gold, orange);
  color: #000;

  box-shadow: 0 0 18px rgba(255, 200, 120, 0.8);
}
/* ================================
   🔒 PREMIUM LOCK OVERLAY – BIG LOCK + GOLD BUTTON
   ================================ */

.card.locked .lock-overlay{
  background: linear-gradient(180deg,
    rgba(10, 14, 42, 0.72),
    rgba(0, 0, 0, 0.88)
  );
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 215, 160, 0.35);
  box-shadow:
    inset 0 0 55px rgba(255, 180, 80, 0.12),
    0 0 70px rgba(255, 190, 100, 0.22);

  padding: 26px;
  gap: 14px;
}

/* BIG LOCK ICON */
.card.locked .lock-overlay .big-lock{
  font-size: 64px;
  line-height: 1;
  filter: drop-shadow(0 0 16px rgba(255, 200, 120, 0.55));
  animation: lockPulse 2.8s ease-in-out infinite;
}

@keyframes lockPulse{
  0%   { transform: scale(1);   opacity: 0.92; }
  50%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1);   opacity: 0.92; }
}

/* LOCK TITLE + SUBTEXT */
.card.locked .lock-overlay .lock-title{
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  letter-spacing: 0.6px;
  color: #FFD7A0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.85);
}

.card.locked .lock-overlay .lock-sub{
  font-size: 0.92rem;
  color: rgba(255, 235, 210, 0.88);
  line-height: 1.5;
  max-width: 280px;
}

/* GOLDEN "KNOW MORE" BUTTON */
.lock-cta{
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: min(260px, 85%);
  padding: 12px 16px;
  margin-top: 8px;

  border-radius: 999px;
  border: 1px solid rgba(255, 215, 160, 0.55);

  background: linear-gradient(135deg, #ffd27d, #ff9a3c);
  color: #1a0b05 !important;

  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none !important;

  box-shadow:
    0 0 24px rgba(255, 190, 100, 0.55),
    inset 0 0 10px rgba(255,255,255,0.25);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lock-cta:hover{
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 34px rgba(255, 200, 120, 0.75),
    0 0 90px rgba(255, 150, 60, 0.35),
    inset 0 0 12px rgba(255,255,255,0.28);
}

/* Make blurred list look more subtle behind overlay */
.card.locked .premium-content{
  filter: blur(8px) brightness(0.55) saturate(0.85);
}


/* LOCK TITLE + SUBTEXT */

.video-embed,.card .lock-title1{
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  letter-spacing: 0.6px;
  color: #FFD7A0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.85);
}

.video-embed,.card .lock-sub1{
  font-size: 0.92rem;
  color: rgba(255, 235, 210, 0.88);
  line-height: 1.5;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.6px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.85);
  text-align: left;
}






/* =========================
   PREMIUM FOOTER (LUX)
========================= */
.lux-footer{
  position: relative;
  margin-top: 22px;
  padding: 26px 16px;

  /* premium glass */
  background:
    radial-gradient(ellipse at top, rgba(255, 200, 120, 0.10), rgba(10, 14, 42, 0.92)),
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.88));
  backdrop-filter: blur(10px);

  border-top: 1px solid rgba(255, 215, 160, 0.20);
  box-shadow:
    0 -18px 60px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255, 215, 160, 0.10);
}

/* gold glow divider */
.lux-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:min(920px, 92%);
  height:1px;
  background: linear-gradient(to right, transparent, rgba(255, 200, 120, 0.85), transparent);
  box-shadow: 0 0 18px rgba(255, 180, 90, 0.35);
}

.lux-footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.lux-footer-brand{
  text-align: center;
}

.lux-footer-logo{
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  letter-spacing: 1.2px;
  color: #FFD7A0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.85);
}

.lux-footer-tagline{
  margin-top: 6px;
  font-size: 0.92rem;
  color: rgba(255, 235, 210, 0.78);
  letter-spacing: 0.4px;
}

.lux-footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 8px 0 6px;
}

.lux-footer-links a{
  position: relative;
  color: rgba(255, 235, 210, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
  padding: 6px 2px;
  transition: color 0.25s ease, transform 0.25s ease;
}

.lux-footer-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:2px;
  width:100%;
  height:1px;
  background: linear-gradient(to right, transparent, rgba(255, 200, 120, 0.85), transparent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lux-footer-links a:hover{
  color: #FFD7A0;
  transform: translateY(-1px);
}

.lux-footer-links a:hover::after{
  opacity: 1;
  transform: scaleX(1);
}

.lux-footer-bottom{
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 215, 160, 0.12);

  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: space-between;
}

.lux-footer-copy{
  font-size: 0.85rem;
  color: rgba(255, 235, 210, 0.70);
  letter-spacing: 0.2px;
}

/* social icons - premium */
.lux-footer-social{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}


.lux-footer-social a{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 215, 160, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 235, 210, 0.85);

  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.lux-footer-social a:hover{
  transform: translateY(-2px) scale(1.04);
  background: rgba(255, 200, 120, 0.16);
  color: #FFD7A0;
  box-shadow:
    0 0 22px rgba(255, 200, 120, 0.22),
    0 18px 40px rgba(0,0,0,0.55);
}

/* mobile alignment */
@media (max-width: 640px){
  .lux-footer-bottom{
    justify-content: center;
    text-align: center;
  }
}




.field{
  margin: 12px 0 6px;
}

.field-label{
  display: block;
  margin-bottom: 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.6px;
  color: #FFD7A0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.75);
}




/* =========================
   👑 PREMIUM FLOATING UPGRADE BUTTON
========================= */
.upgrade-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999; /* above everything */

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 13px 16px;
  border-radius: 999px;

  font-family: 'Cinzel', serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.5px;

  text-decoration: none;
  color: #1a0b05;

  border: 1px solid rgba(255, 215, 160, 0.65);
  background: linear-gradient(135deg, #ffd27d, #ff9a3c);

  box-shadow:
    0 0 26px rgba(255, 190, 100, 0.70),
    0 0 90px rgba(255, 150, 60, 0.28),
    inset 0 0 10px rgba(255,255,255,0.22);

  transform: translateZ(0);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.upgrade-float:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 0 36px rgba(255, 200, 120, 0.85),
    0 0 120px rgba(255, 150, 60, 0.35),
    inset 0 0 12px rgba(255,255,255,0.26);
  filter: brightness(1.03);
}

/* tiny shimmer */
.upgrade-float::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 999px;
  pointer-events:none;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.22) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: upgradeShine 3.2s ease-in-out infinite;
  opacity: 0.8;
}
@keyframes upgradeShine{
  0%{ transform: translateX(-120%); }
  55%{ transform: translateX(120%); }
  100%{ transform: translateX(120%); }
}

.upgrade-float i{
  filter: drop-shadow(0 0 10px rgba(255, 200, 120, 0.55));
}

/* Mobile polish */
@media (max-width: 900px){
  .upgrade-float{
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
    font-size: 0.88rem;
  }
}
@media (max-width: 420px){
  .upgrade-float{
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}


/* === FIX: header button not clickable on desktop (overlap issue) === */
header{ position: relative; z-index: 1000; }

/* Logo can overlap the button due to negative margin + shadows.
   Don't let it capture clicks. */
header .site-logo{
  pointer-events: none;
  position: relative;
  z-index: 1;
}

/* Ensure title + login button are above any header visuals */
header .site-title{
  position: relative;
  z-index: 10;
}

header .site-title form,
header .site-title button{
  position: relative;
  z-index: 11;
  pointer-events: auto;
}





/* =========================
   🔥 PULSE GLOW for CLICKABLE buttons/links
   ========================= */

/* Keyframes: glow on/off */
@keyframes pulseGlow {
  0% {
    box-shadow:
      0 0 10px rgba(255, 190, 100, 0.22),
      0 0 22px rgba(255, 150, 60, 0.14),
      inset 0 0 10px rgba(255,255,255,0.10);
    filter: brightness(0.98);
  }
  50% {
    box-shadow:
      0 0 22px rgba(255, 200, 120, 0.70),
      0 0 60px rgba(255, 150, 60, 0.35),
      inset 0 0 12px rgba(255,255,255,0.20);
    filter: brightness(1.06);
  }
  100% {
    box-shadow:
      0 0 10px rgba(255, 190, 100, 0.22),
      0 0 22px rgba(255, 150, 60, 0.14),
      inset 0 0 10px rgba(255,255,255,0.10);
    filter: brightness(0.98);
  }
}

/* Apply pulse ONLY to clickable CTA elements */
.card a[href]:not(.social-icon):not(.portal-tab),
.card button,
.btn,
.auth-btn,
.lock-cta,
.upgrade-float{
  animation: pulseGlow 2.2s ease-in-out infinite;
}

/* Stop pulsing on hover (feels premium) */
.card a[href]:not(.social-icon):not(.portal-tab):hover,
.card button:hover,
.btn:hover,
.auth-btn:hover,
.lock-cta:hover,
.upgrade-float:hover{
  animation: none;
}

/* Respect disabled / non-clickable elements */
[disabled],
.disabled,
[aria-disabled="true"],
.portal-tab{
  animation: none !important;
}



.guest-btn{
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 10px;
  cursor: pointer;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,215,160,0.28);
  color: rgba(255,235,210,0.92);

  font-family: 'Cinzel', serif;
  letter-spacing: 0.4px;
}

.guest-btn:hover{
  background: rgba(255,255,255,0.10);
}
.google-btn {
  display:block;
  background:#4285F4;
  color:#fff;
  padding:10px;
  border-radius:6px;
  text-align:center;
  margin-bottom:10px;
}

.email-login input {
  width:100%;
  padding:8px;
  margin-bottom:6px;
}

.email-login button {
  width:100%;
  padding:9px;
}

.divider {
  text-align:center;
  margin:12px 0;
  color:#999;
  font-size:13px;
}

.alt-title {
  font-size:14px;
  margin-bottom:6px;
  color:#666;
}


.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;
  width: 100%;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);

  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  backdrop-filter: blur(10px);

  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;

  transition: all 0.25s ease;
  cursor: pointer;
}

.google-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,179,71,0.7);
  box-shadow: 0 10px 25px rgba(255,179,71,0.25);
}

.google-btn:active {
  transform: scale(0.98);
}

.google-icon {
  display: flex;
  align-items: center;
}


.profile-box {
  width: 95%;
  max-width: 620px;
  padding: 40px;

  /* 🔥 Warm dark instead of blue */
  background:
    radial-gradient(
      ellipse at top,
      rgba(255, 170, 80, 0.08),
      rgba(10, 14, 42, 0.95)
    ),
    linear-gradient(
      180deg,
      #050814,
      #0a0e2a
    );

  border-radius: 20px;
  text-align: left;

  border: 1px solid rgba(255,215,160,0.35);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.85),
    0 0 40px rgba(255,160,80,0.18);
}

.form-group input {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,215,160,0.25);
  background: rgba(255,255,255,0.03);
  color: #FFD7A0;
  font-size: 0.95rem;
  transition: 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
}


.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #FFD7A0;
  letter-spacing: 0.5px;
}

.form-group input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,215,160,0.3);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 0.95rem;
}

.form-group input:focus {
  outline: none;
  border-color: gold;
  box-shadow: 0 0 8px rgba(255,215,160,0.4);
}

.full-width {
  grid-column: span 2;
}




/* =========================
   👑 PREMIUM USER DROPDOWN
========================= */

.premium-user-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 115%;

  min-width: 260px;
  padding: 20px 0;

  /* DARKER – no transparency bleed */
  background: linear-gradient(
    160deg,
    #151826 0%,
    #10131d 100%
  );

  border-radius: 20px;

  border: 1px solid rgba(255,215,160,0.28);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.85);

  backdrop-filter: none;

  z-index: 99999;
}


.user-info-block {
  padding: 0 20px;
}

.user-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: #FFD7A0;
  margin-bottom: 12px;
}

.user-detail {
  font-size: 0.85rem;
  color: rgba(255,235,210,0.85);
  margin-bottom: 6px;
}

.user-detail.small {
  font-size: 0.75rem;
  opacity: 0.7;
}
.premium-user-dropdown a {
  display: block;
  padding: 12px 22px;
  text-decoration: none;
  color: rgba(255,235,210,0.9);
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.premium-user-dropdown a:hover {
  background: rgba(255,215,160,0.08);
}


.dropdown-divider {
  height: 1px;
  margin: 14px 0;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,215,160,0.6),
    transparent
  );
}

.premium-user-dropdown a {
  display: block;
  padding: 10px 22px;
  text-decoration: none;
  color: #FFD7A0;
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.premium-user-dropdown a:hover {
  background: rgba(255,215,160,0.08);
}

.premium-user-dropdown button {
  width: 100%;
  padding: 10px 22px;
  background: none;
  border: none;
  color: #ffb3b3;
  text-align: left;
  cursor: pointer;
  font-size: 0.9rem;
}

.premium-user-dropdown button:hover {
  background: rgba(255,120,120,0.12);
}



.modal-title {
  font-family: 'Cinzel', serif;
  font-size: 1.7rem;
  color: #FFD7A0;
  text-align: center;
  margin-bottom: 6px;
}

.modal-subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,235,210,0.75);
  margin-bottom: 20px;
}

.modal-divider {
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,215,160,0.5),
    transparent
  );
}

.modal-divider.small {
  margin: 14px 0;
  font-size: 0.7rem;
  text-align: center;
  color: rgba(255,215,160,0.6);
}

/* UNIFIED BUTTON STYLE */
.premium-btn {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,215,160,0.35);

  background: linear-gradient(
    135deg,
    rgba(255,200,120,0.25),
    rgba(255,160,80,0.18)
  );

  color: #FFD7A0;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;

  cursor: pointer;
  transition: all 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.premium-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(255,180,80,0.5),
    0 0 60px rgba(255,150,60,0.25);
}

/* Outline variant */
.outline-style {
  background: transparent;
}

/* Google slight variant */
.google-style {
  background: rgba(255,255,255,0.05);
}

/* Premium Inputs */
.premium-input {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 14px;
  border-radius: 12px;

  border: 1px solid rgba(255,215,160,0.25);
  background: rgba(255,255,255,0.04);

  color: #FFD7A0;
  font-size: 0.9rem;
}

.premium-input:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 10px rgba(255,215,0,0.3);
}

.privacy-note {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 18px;
  color: rgba(255,235,210,0.6);
}
.portal-bg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-text {
  text-align: center;
  color: #F8E7C1;
  backdrop-filter: blur(1px);
  padding: 60px 40px;
}

.portal-text h1 {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

.portal-text p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: #FFD700;
}

.blog-section {
  text-align: left;
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;

  display: flex;
  flex-direction: column;
  align-items: center;   /* centers buttons */
  gap: 14px;
}

.blog-list li {
  width: 100%;
  display: flex;
  justify-content: center;
}

.blog-list li a {
  width: 90%;               /* 🔥 SAME WIDTH FOR ALL */
  max-width: 420px;         /* keeps it neat */
  padding: 14px 20px;

  border-radius: 14px;
  background: rgba(255, 215, 160, 0.08);
  border: 1px solid rgba(255, 215, 160, 0.20);

  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.4px;

  text-align: center;
  text-decoration: none;
  color: rgba(255, 235, 210, 0.92);

  transition: 0.3s ease;
}

.blog-list li a:hover {
  background: rgba(255, 215, 160, 0.18);
  transform: translateY(-2px);
}




.video-embed a,
.video-embed button {
  padding: 5px 12px !important;
  font-size: 1.25rem !important;
}
.video-embed a,
.video-embed button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}





/* FINAL HARD FIX — AstroBazaar heading */
.astrobazaar-card h2 {
  all: unset;
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: #ffcc88;
  margin-bottom: 14px;
}
/* =========================
   MOBILE FIX — AstroBazaar
========================= */
@media (max-width: 768px) {

  .astrobazaar-card {
    padding: 22px !important;     /* reduce heavy 58px */
    min-height: auto !important;  /* remove forced height */
  }

  .astrobazaar-card h2 {
    font-size: 1.25rem !important;
  }

  .astrobazaar-card .bazaar-btn {
    padding: 8px 14px !important;
    font-size: 0.9rem !important;
  }

}
/* =====================================================
   📱 MOBILE BLOG FIX – KEEP INSIDE CARD
===================================================== */

@media (max-width: 768px) {

  .blog-section {
    padding: 0 5px;
  }

  .blog-list {
    align-items: stretch !important;
  }

  .blog-list li {
    width: 100% !important;
    display: block !important;
  }

  .blog-list li a {
    width: 100% !important;
    max-width: 100% !important;

    box-sizing: border-box;

    padding: 14px 16px;
  }

}








/* =====================================================
   👑 PREMIUM MOBILE – BALANCED HERO
   Bright Header • Deep Body • No Green
===================================================== */

@media (max-width: 768px) {

  body {
    background:
      /* Top lighter, bottom deeper */
      linear-gradient(
        rgba(10, 10, 15, 0.25) 0%,
        rgba(10, 10, 15, 0.45) 35%,
        rgba(10, 10, 15, 0.70) 100%
      ),

      url("/images/hero-sunset.webp") center top / cover no-repeat !important;

    background-attachment: scroll !important;
  }

  /* Subtle depth vignette */
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;

    background:
      radial-gradient(
        ellipse at center,
        rgba(0,0,0,0.08),
        rgba(0,0,0,0.45)
      );
  }

  /* Remove blur */
  .card,
  .modal-box,
  .premium-user-dropdown,
  .lux-footer,
  .lock-overlay {
    backdrop-filter: none !important;
  }

  /* Premium neutral shadow */
  .card,
  .card.locked,
  .upgrade-float,
  .astrobazaar-card,
  .remedies-card {
    box-shadow:
      0 18px 40px rgba(0,0,0,0.75),
      inset 0 1px 0 rgba(255,255,255,0.04) !important;
  }

  /* Softer white glow for logo */
  header img {
    filter:
      drop-shadow(0 0 6px rgba(255,255,255,0.35)) !important;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
  }



/* =========================
   📱 MOBILE FLOAT BUTTON FIX
========================= */
@media (max-width: 768px) {

  .upgrade-float {
    right: 12px;
    bottom: 14px;

    padding: 10px 14px;
    font-size: 0.82rem;
    gap: 6px;

    max-width: 90%;
    width: auto;

    box-shadow:
      0 12px 25px rgba(0,0,0,0.6),
      inset 0 0 6px rgba(255,255,255,0.2);
  }

}


}


  </style>