/* ===== Root and Base Setup ===== */
:root {
  --color-bg: #121217; /* Deep midnight charcoal */
  --color-primary: #ec4899; /* Soft, warm pink */
  --color-primary-light: #ff8fc9;
  --color-text-primary: #f3f4f6; /* Off-white */
  --color-text-secondary: #9ca3af; /* Muted gray */
  --color-input-bg: rgba(255 255 255 / 0.08);
  --color-input-border: #3f3f46;
  --color-shadow-primary: rgba(236, 72, 153, 0.15);
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --transition-fast: 0.25s ease;
  --radius-round: 9999px;
}

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* RESET & UNIFY BROWSER BEHAVIOR */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BASE TYPOGRAPHY & LAYOUT SCALE */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #f0f0f0;
  background: #0e0e0e;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

/* UNIVERSAL FLEX & GRID CONTROL */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

section,
header,
footer,
article,
div {
  max-width: 100%;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* RESPONSIVE IMAGES */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* RESPONSIVE TEXT */
h1, h2, h3, h4, h5, h6, p {
  max-width: 100%;
  word-break: break-word;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
p  { font-size: clamp(1rem, 2.5vw, 1.25rem); }

/* RESPONSIVE GRID SYSTEM */
.articles-grid,
.featured-articles__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* FLEX RESPONSIVE UTILITY */
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* BUTTON RESPONSIVENESS */
button,
a.see-more-button {
  display: inline-block;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #4F5BD5, #FF6EC4);
  color: white;
  box-shadow: 0 0 20px rgba(255, 110, 196, 0.4);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

button:hover,
a.see-more-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 110, 196, 0.7);
}

/* MOBILE FIRST UTILITIES */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .article-card {
    text-align: center;
  }

  .article-title {
    font-size: 1.25rem;
  }

  .article-excerpt {
    font-size: 1rem;
  }
}

/* ULTRA-MOBILE SAFEGUARD */
@media (max-width: 420px) {
  .see-more-button {
    width: 100%;
    padding: 1rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }
}


.amoura-intro {
  animation: fadeInUp 1.6s ease both;
  padding: 2rem 1rem;
  margin: 3rem auto;
  max-width: 800px;
  text-align: center;
  color: #ddd;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.amoura-intro strong {
  color: white;
  font-weight: 600;
}

.amoura-intro span {
  color: var(--gentle-pink);
  font-style: italic;
  display: block;
  margin-top: 1rem;
}

/* Responsive finesse */
@media screen and (max-width: 640px) {
  .amoura-intro {
    padding: 1.5rem 1rem;
    font-size: 1rem;
  }
}

/* Subtle float animation */
@keyframes floatFade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.fadeUpDelayed {
  animation: floatFade 1.4s ease-in-out forwards;
}

/* Add glow hover for future interactive text */
.glow-hover:hover {
  color: var(--pink-glow);
  text-shadow: 0 0 10px var(--pink-glow), 0 0 20px var(--pink-glow);
}

.featured-quizzes-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 1rem;
  z-index: 1;
}

.featured-quizzes-section2{
  
  overflow: hidden;
  padding: 4rem 1rem;
  z-index: 1;
}

.background-image::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 0.5 = 50% darkness */
  pointer-events: none; /* clicks pass through */
}


.featured-quizzes-section .background-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url('body-cover.png') center center / cover no-repeat;
  opacity: 0.15;
  z-index: -1;
  animation: fadeIn 2s ease forwards;
}


.background-image2::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 0.5 = 50% darkness */
  pointer-events: none; /* clicks pass through */
}


.featured-quizzes-section2 .background-image2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url('destiny-dice.png') center center / cover no-repeat;
  opacity: 0.15;
  z-index: -1;
  animation: fadeIn 2s ease forwards;
}

.content-wrapper {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  animation: zoomIn 1.2s ease both;
}

.featured-title {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.featured-description {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: #ccc;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.featured-description span {
  color: #f472b6;
  font-style: italic;
}

.cta-button {
  background-color: #ec4899;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.cta-button:hover {
  background-color: #db2777;
  transform: scale(1.05);
  box-shadow: 0 0 12px #ec4899;
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
  .featured-quizzes-section {
    padding: 3rem 1rem;
  }

  .cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  } to {
    opacity: 0.15;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.96);
    opacity: 0;
  } to {
    transform: scale(1);
    opacity: 1;
  }
}

.featured-articles {
  padding: 4rem 1rem;
  background-color: #0b0c10; /* dark mood backdrop */
}

.featured-articles__header h2 {
  letter-spacing: 0.02em;
}



.featured-articles__divider {
  height: 2px;
  background: linear-gradient(to right, #ec4899, #f472b6); /* pink gradient */
  border: none;
}

.articles-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 3rem;
}

.article-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.4);
}

.article-thumb {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.article-title {
  color: #fff;
  margin-bottom: 0.5rem;
}

.article-excerpt {
  color: #d1d5db; /* Tailwind’s gray-300 */
  font-size: 0.95rem;
  line-height: 1.6;
}

.read-more-link {
  z-index: 9999;
  position: relative;
  font-weight: 500;
  color: #ec4899;
  text-decoration: none;
  padding: 1rem;
  display: inline-block;
  
}

.read-more-link:hover {
  text-decoration: underline;
}

.see-more-wrapper .see-more-button {
  background-color: #ec4899;
  color: white;
  padding: 0.75rem 1.75rem;
  font-weight: bold;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
}

.see-more-wrapper .see-more-button:hover {
  background-color: #db2777;
}

/* --- Container and Section Styling --- */
.featured-articles {
  margin-top: -99px; /* keep your existing offset */
  padding: 40px 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  overflow-x: hidden; /* prevent horizontal scroll */
}

/* Header */
.featured-articles__header {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Title */
.featured-articles__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.25rem; /* 3xl base */
  line-height: 1.2;
  color: #f0f0f0;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Divider */
.featured-articles__divider {
  width: 60px;
  height: 4px;
  background: #ff4081;
  border: none;
  margin: 0 auto 20px auto;
  border-radius: 3px;
  box-shadow: 0 0 8px #ff4081aa;
  transition: background 0.3s ease;
}

/* Grid Container */
.featured-articles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
}

/* Grid Responsive Breakpoints */
@media (min-width: 640px) {
  .featured-articles__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .featured-articles__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Article Card */
:root {
  --space-pink: #ff5fc3;
  --space-indigo: #7c3aed;
  --space-bg: #0a0a0f;
  --card-glow: rgba(255, 95, 195, 0.15);
  --card-shadow: rgba(124, 58, 237, 0.3);
  --border-glass: rgba(255, 255, 255, 0.06);
  --text-fade: #d1d5db;
}

/* Base Section */
.featured-articles {
  padding: 6rem 2rem 3rem;
  background: radial-gradient(circle at 30% 10%, #1b0c24 10%, #0a0a0f 90%);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.featured-articles__title {
  background: linear-gradient(90deg, var(--space-pink), var(--space-indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  font-weight: 900;
}

.featured-articles__divider {
  height: 2px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--space-pink), transparent);
  margin: 2rem auto;
  width: 100px;
}

/* Grid */
.featured-articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  z-index: 1;
  position: relative;
}

/* Alien Neon Cards */
.article-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--border-glass);
  border-radius: 1.5rem;
  padding: 2rem;
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 0 0.5px var(--card-glow),
    0 4px 25px var(--card-shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.article-card::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 160%;
  height: 160%;
  background: conic-gradient(from 90deg, var(--space-pink), var(--space-indigo), var(--space-pink));
  opacity: 0.05;
  filter: blur(90px);
  z-index: 0;
}

/* Headings */
.article-card__heading {
  margin-bottom: 1.2rem;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
}

/* Lists */
.article-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1;
  position: relative;
}

.article-card__link {
  display: inline-block;
  font-size: 0.98rem;
  color: var(--text-fade);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.article-card__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(135deg, #0015ff, #a200ff, #ff0073, #ff7300);
  transition: width 0.3s ease;
}



.article-card__link:hover::after {
  width: 100%;
}

.article-card__link:hover {
  color: #f5b1b1;
}

/* Ambient Orb Effect (optional but sick) */
.featured-articles::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  background: radial-gradient(circle, var(--space-pink), transparent 70%);
  opacity: 0.07;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}


/* Base section styling */
.featured-articles.quick-replies {
  background: radial-gradient(circle at 30% 10%, #1b0c24 10%, #0a0a0f 90%);;
  padding: 60px 20px 40px;
  margin-top: 0;
  text-align: center;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Header title */
.featured-articles__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

/* Divider line */
.featured-articles__divider {
  width: 60px;
  height: 4px;
  background-color: #f97316; /* soft vibrant orange */
  margin: 0 auto 40px;
  border: none;
  border-radius: 999px;
}

/* Quick reply button container */
.quick-replies__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Button base styles */
.footer-button2 {
  background: linear-gradient(to right, #ec4899, #8b5cf6); /* pink to violet gradient */
  color: white;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  white-space: normal;
  max-width: 320px;
  text-align: center;
  line-height: 1.5;
  box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
}

/* On hover */
.footer-button2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px linear-gradient(to right, #ec4899, #8b5cf6);
  background: linear-gradient(to right, #8b5cf6, #ec4899 );
  color: #000000;
}

/* On active click */


/* Responsive button sizing */
@media (max-width: 640px) {
  .footer-button2 {
    width: 100%;
    font-size: 0.95rem;
    padding: 14px 18px;
  }

  .quick-replies__buttons {
    flex-direction: column;
    gap: 16px;
  }
}

:root {
  --amoura-pink: #ff69b4;
  --amoura-purple: #8e2de2;
  --amoura-blue: #4a00e0;
  --amoura-bg: #0e0e0e;
  --amoura-glow: rgba(255, 105, 180, 0.5);
  --amoura-white: #ffffff;
  --amoura-gray: #cccccc;
}

/* SECTION BASE */
.amoura-section {
  max-width: 700px;
  margin: 4rem auto;
  text-align: center;
  padding: 0 1rem;
  animation: fadeIn 1s ease-out both;
}

/* HEADER */
.amoura-section h2 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, var(--amoura-pink), var(--amoura-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.amoura-section p {
  font-size: 1.25rem;
  color: var(--amoura-gray);
  margin-bottom: 2.5rem;
}

/* FORM CONTAINER */



/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.a2a_kit.a2a_default_style.a2a_kit_size_32{
  margin-left: 0px;
}

/* Core layout wrapper */
.featured-articles {
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  margin-top: -70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Inner header stays centered */
.featured-articles__header {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

/* Grid layout for articles */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
  margin-bottom: 2rem;
}

/* Individual cards */
.article-card {
  background: transparent;
  border-radius: 16px;
  padding: 1rem;
  max-width: 360px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* Image scaling */
.article-thumb {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* Text centering */
.article-title,
.article-excerpt,
.article-card__link {
  text-align: center;
}

/* See more */
.see-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.see-more-button {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: linear-gradient(to right, #ff4ec6, #4f5bd5);
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
}

.see-more-button:hover {
  transform: scale(1.05);
}

/* Responsive grid breakpoints */
@media (min-width: 480px) {
  .articles-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 640px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1300px) {
  .featured-articles__header {
    max-width: 1300px;
  }
}

/* Master container */
.featured-articles {
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header stays centered */
.featured-articles__header {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

/* Grid that adjusts based on screen size */
.featured-articles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
  margin-top: 2rem;
}

/* Each article card centered and responsive */
.article-card {
  background: transparent;
  border-radius: 16px;
  padding: 1.25rem;
  max-width: 360px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* Lists inside cards centered too */
.article-card__list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  text-align: center;
}

.article-card__link {
  display: inline-block;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: #ff70d4;
  transition: color 0.2s ease;
}

.article-card__link:hover {
  color: #fff;
}

/* Responsive breakpoints */
@media (min-width: 480px) {
  .featured-articles__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 640px) {
  .featured-articles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .featured-articles__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .featured-articles__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== QUICK REPLIES SECTION ========== */
.featured-articles.quick-replies {
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Title section centered */
.featured-articles__header {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.featured-articles__title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.75rem;
}

.featured-articles__divider {
  width: 80px;
  height: 3px;
  background-color: #ff70d4;
  border: none;
  margin: 0 auto 20px;
}

/* Responsive button grid */
.quick-replies__buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  justify-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Button styles */


/* Breakpoints for multi-column layout */
@media (min-width: 600px) {
  .quick-replies__buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .quick-replies__buttons {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .quick-replies__buttons {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* === DAILY PULSE MASTER CONTAINER === */
#daily-pulse {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 4rem 2rem;
  border-radius: 2rem;
  background: radial-gradient(circle at 30% 10%, #1b0c24 10%, #0a0a0f 90%);;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  color: #fff;
  overflow: hidden;
  z-index: 1;
}

/* === SUB CONTAINER === */
.pulse-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

/* === ANIMATION LAYER (FOR AMBIENT PARTICLES IF NEEDED) === */
.pulse-animation-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to right, #1a1a1a, #2a002a);
  animation: subtlePulse 10s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.4;
}

/* === FORECAST TEXT === */
.pulse-forecast {
  text-align: center;
  z-index: 1;
}

.pulse-forecast h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #ffb477, #fd7eb7, #c86efc, #7d88ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pulse-forecast p {
  font-size: 1.15rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* === MOOD SECTION === */
.pulse-mood-selector {
  text-align: center;
  width: 100%;
  z-index: 1;
}

.pulse-mood-selector h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

/* === MOOD BUTTON WRAPPER === */
.pulse-mood-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* === INDIVIDUAL FEELING BUTTONS === */
.pulse-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.pulse-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.06);
}

.pulse-btn.selected {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.pulse-btn2 {
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.pulse-btn2:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.06);
}

/* === RESPONSE BOX === */
.pulse-response {
  font-size: 1.15rem;
  line-height: 1.8;
  background: rgba(255,255,255,0.07);
  padding: 1.25rem 2rem;
  border-radius: 1rem;
  max-width: 600px;
  margin: 0 auto;
  border-left: 4px solid #fff;
  font-style: italic;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

/* === ANIMATIONS === */
@keyframes subtlePulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.02); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* === MEDIA RESPONSIVENESS === */
@media (max-width: 600px) {
  #daily-pulse {
    padding: 3rem 1.5rem;
  }

  .pulse-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  .pulse-forecast h2 {
    font-size: 1.6rem;
  }

  .pulse-response {
    font-size: 1rem;
    padding: 1rem;
  }
}

.pulse-btn[disabled] {
   opacity: 0.5; 
   cursor: not-allowed; 
  }

#confession-booth {
  max-width: 900px;
  margin: 5rem auto;
  padding: 4rem 2rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(198,110,252,0.15), rgba(125,136,255,0.15));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.confession-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Spotlight */
.confession-spotlight {
  background: rgba(255, 255, 255, 0.07);
  padding: 2rem;
  border-radius: 1.5rem;
  border-left: 5px solid #fd7eb7;
}

.confession-spotlight h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffb477;
}

.confession-spotlight blockquote {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0;
  line-height: 1.8;
}

.amoura-reply {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #ffd4f3;
}

/* Confession Form */
.confession-spotlight {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
  text-align: center;
}

.confession-spotlight h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.confession-spotlight blockquote {
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0.5rem auto;
}

.amoura-reply {
  margin-top: 0.8rem;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  opacity: 0.9;
}

/* Confession Form */
.confession-form {
  margin-bottom: 2.5rem;
  text-align: center;
}

.confession-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

#confession-input {
  width: 100%;
  max-width: 600px;
  height: 120px;
  border-radius: 12px;
  border: none;
  padding: 1rem;
  font-size: 1rem;
  resize: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  outline: none;
  backdrop-filter: blur(6px);
}

#confession-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#submit-confession {
  margin-top: 8px;
  background: #ffffff22;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

#submit-confession:hover {
  background: #ffffff44;
}

/* Confession Feed */
.confession-feed h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.confession-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  position: relative;
  color: #fff;
  animation: fadeIn 0.5s ease forwards;
}

.confession-card p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.reaction-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.4rem 0.9rem;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.reaction-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.reaction-btn.active {
  background: #ffffff44;
  font-weight: 700;
  border-color: #fff;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.whisper-container {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    padding: 3rem 4rem;
    border-radius: 25px;
    max-width: 600px;
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.4);
    text-align: center;
    user-select: none;
  }
  .whisper-text {
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeIn 2s forwards;
  }
  .heart {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    pointer-events: none;
  }
  .heart path {
    fill: #ff6f91;
    stroke: #ff3c78;
    stroke-width: 2;
    filter: drop-shadow(0 0 5px #ff3c78);
    animation: flutter 3s infinite ease-in-out;
    transform-origin: center;
  }
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  @keyframes flutter {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.15); }
  }

.pulse-btn.selected {
  background: #ff75b5;
  color: white;
  transform: scale(1.05);
}

#curated-response.fade-out {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
#curated-response.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

#animation-overlay {
  position: fixed;
  z-index: 999;
  inset: 0;
  background: radial-gradient(ellipse at center, #ffc0cb 0%, #ff88aa 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#animation-overlay.active {
  opacity: 0.9;
  animation: pulse-cloud 2s ease-in-out forwards;
}

@keyframes pulse-cloud {
  0% { opacity: 0; transform: scale(1); }
  40% { transform: scale(1.05); }
  70% { transform: scale(1); }
  100% { opacity: 0; transform: scale(1); }
}

#see-more-confessions {
  display: none;
  margin-top: 1em;
  background: #ff5c8d;
  color: white;
  border: none;
  padding: 0.5em 1em;
  border-radius: 20px;
  cursor: pointer;
}

#nglModal span {
  display: block;
  color: black;
  font-style: italic;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 1rem auto;
  border: 1px solid black;
  padding: 0.3rem 1rem;
  box-sizing: border-box;
  padding: 17px;
  margin-bottom: -4px;
}

/* marquee-like animation */
#nglModal span::before {
  content: "⚠️ This modal (confession-site[NGL]) is NOT affiliated with Amoura. Anything you do in the modal is your responsibility. We only provide the space for anonymous confessions. If you do anything else, it's NOT our business.";
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-text 25s linear infinite;
  left: 100%;
  top: 50%;
  transform: translateY(50%);
  color: black;
  
}

@keyframes scroll-text {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(-125%) translateY(-50%);
  }
}



@keyframes gradientFlow {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

button {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 14px 28px;
  font-size: 1.2rem;
  color: white;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 20px;
}
button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.dice-wrapper {
  perspective: 1000px;
  width: 120px;
  height: 120px;
  margin: 40px auto;
}
.dice {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 2s ease-in-out;
  position: relative;
}
.face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 30px rgba(255,255,255,0.2);
}
.face1 { transform: rotateY(0deg) translateZ(60px); }
.face2 { transform: rotateY(90deg) translateZ(60px); }
.face3 { transform: rotateY(180deg) translateZ(60px); }
.face4 { transform: rotateY(-90deg) translateZ(60px); }
.face5 { transform: rotateX(90deg) translateZ(60px); }
.face6 { transform: rotateX(-90deg) translateZ(60px); }

.result-card {
  margin-top: 30px;
  padding: 24px 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  text-align: center;
  max-width: 420px;
  box-shadow: 0 0 30px rgba(255,255,255,0.3);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.6s ease;
}
.result-card.visible {
  opacity: 1;
  transform: scale(1);
}
.category {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.4);
}
.message {
  font-size: 1.1rem;
  line-height: 1.6;
}

.spark {
  position: absolute;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.spark.active {
  opacity: 1;
  animation: sparkleFade 0.8s ease-out forwards;
}
@keyframes sparkleFade {
  from {opacity: 1;}
  to {opacity: 0;}
}



@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
  --baby-sky: #ff8ecf;
  --baby-deep: linear-gradient(to right, #1a1a1a, #2a002a);
  --baby-light: linear-gradient(to bottom right, #fccca5, #fda0ca, #dfa8ff, #a8affd);
  --baby-glow: linear-gradient(to right, #ec4899, #8b5cf6);
}

#baby-filter{
  color: black;
}

.baby-container {
  font-family: "Roboto", sans-serif;
  background: var(--baby-light);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 1300px;
  margin: 2rem auto;
  margin: 2rem auto;
}

.baby-container {
  
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  border-radius: 16px;
  overflow: hidden;
  background: var(--baby-light);
}

.baby-header {
  background: var(--baby-deep);
  color: var(--baby-light);
  padding: 2rem;
  text-align: center;
  border: none;
}

.baby-header input {
  margin-top: 1rem;
  width: 100%;
  padding: 0.75rem 1.2rem;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  color: var(--baby-deep);
  background: var(--baby-light);
}

.baby-header input:focus {
  outline: none;
}

.baby-results-list {
  max-height: 300px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}

.baby-results-list::-webkit-scrollbar {
  width: 10px;
}
.baby-results-list::-webkit-scrollbar-track {
  background: var(--baby-glow);
}
.baby-results-list::-webkit-scrollbar-thumb {
  background: var(--baby-deep);
  border-radius: 6px;
}

.baby-results-list li {
  padding: 1.2rem;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: column;
  
}

.baby-results-list li h4 {
  margin: 0;
  color: #ff3fa4;
  font-size: 16px;
}
.baby-results-list li p {
  margin: 0.3rem 0;
  font-size: 13px;
  color: #333;
}
.baby-results-list li a {
  margin-top: 0.5rem;
  color: #0077ff;
  text-decoration: underline;
  font-weight: bold;
  font-size: 13px;
}

.baby-results-list li.baby-hide {
  display: none;
}

#baby-result {
  display: none;
  transition: all 0.3s ease;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap; /* wrap for small screens */
  }

  .logo {
    height: 48px;
  }

  @keyframes quake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
    100% { transform: translateX(0); }
  }

  .quaking {
    animation: quake 0.4s ease-in-out;
  }

  .search-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-grow: 1;
    justify-content: flex-end;
    max-width: 100%;
    background: linear-gradient(to bottom right, #fccca5, #fda0ca, #dfa8ff, #a8affd);
    margin-left: -15px;
  }

  .search-toggle {
    cursor: pointer;
    transition: background 0.3s ease, font-size 0.3s ease;
    color: #000;
    background: transparent;
    padding: 0%; margin: 0%;
    font-size: 20px;
    padding: 2px;
    margin-top: -55px;
    width: auto;
    height: auto;
    border-radius: 500%;
    border: none;
    
  }

  .search-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    font-size: 24px;
  }

  .search-input {
    position: absolute;
    margin-top: -50px;
    right: 50px;
    width: 0;
    opacity: 0;
    pointer-events: none;
    transition: width 0.3s ease, opacity 0.3s ease;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 16px;
    background: linear-gradient(to bottom right, #fccca5, #fda0ca, #dfa8ff, #a8affd);
    white-space: nowrap;
  }

  .search-container.active .search-input {
    width: 180px;
    opacity: 1;
    pointer-events: auto;
  }

  .search-results {
    position: absolute;
    top: 52px;
    right: 0;
    width: 100%;
    max-width: 330px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    background: linear-gradient(to right, #1a1a1a, #2a002a);
    z-index: 10;
    display: none;
    padding: 10px;
    overflow-x: hidden;
  }

  .search-results.visible {
    display: block;
  }

  .result-item {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .result-item:last-child {
    border-bottom: none;
  }

  @media (max-width: 768px) {
    .search-container.active .search-input {
      width: 150px;
    }

    .search-results {
      max-width: 90vw;
    }
  }

  @media (max-width: 480px) {
    .logo {
      height: 40px;
    }

    .search-toggle {
      width: 36px;
      height: 36px;
      font-size: 18px;
    }

    .search-container.active .search-input {
      width: 130px;
      font-size: 14px;
    }
  }

  .cancel-button{
    cursor: pointer;
    transition: background 0.3s ease, font-size 0.3s ease;
    color: #000;
    background: rgba(255, 255, 255, 0);
    padding: 0%; margin: 0%;
    font-size: 20px;
    padding: 5px;
    margin-top: -55px;
    width: 35px;
    margin-right: -9px !important;
    height: auto;
    
    border-radius: 100%;
  }

  .customModal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.9s ease-out forwards;
  z-index: 9999;
}

.modalContent {
  position: relative;
  background: rgba(25, 25, 25, 0.6);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 540px;
  width: 90%;
  box-shadow: 0 0 30px rgba(255, 0, 90, 0.15);
  transform: scale(0.92);
  animation: scaleIn 0.7s ease-out forwards;
  font-family: 'Segoe UI', Roboto, sans-serif;
  color: #fefefe;
  text-align: center;
  overflow: hidden;
}

.modalContent::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: 20px;
  background: linear-gradient(135deg,  #ffdec1, #ffb9d9, #e6bcff, #bcc2ff);
  background-size: 300% 300%;
  animation: pulseBorder 12s ease infinite;
  z-index: -1;
  filter: blur(14px);
}

.modalContent h2 {
  font-size: 1.8rem;
  letter-spacing: 1.5px;
  color: #ff4fa1;
  text-shadow: 0 0 12px rgb(255, 79, 161);
  margin-bottom: 18px;
}

.modalContent p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f1f1f1;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.06);
  margin-bottom: 25px;
  padding: 0 10px;
}

.closeModal {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 1.6rem;
  color: #ddd;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.3s ease;
}

.closeModal:hover {
  transform: scale(1.3) rotate(90deg);
  color: #ff4d6d;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes scaleIn {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulseBorder {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* HEARTBEAT background */
.customModal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,0,98,0.07) 0%, transparent 70%);
  animation: heartbeat 2s infinite;
  z-index: 0;
}

/* Typing animation text */
#typingText {
  display: inline-block;
  font-size: 1.1rem;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #ff4fa1;
  animation: typing 4s steps(40, end), blink 0.75s step-end infinite;
  max-width: 100%;
}

/* Heart icon animation */
.heartPulse {
  display: inline-block;
  animation: pulseHeart 1.2s infinite;
  font-size: 1.4rem;
  margin-right: 8px;
  vertical-align: middle;
}

/* --- Animations --- */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  0%, 100% { border-color: transparent }
  50% { border-color: #ff4fa1 }
}

@keyframes heartbeat {
  0% { transform: scale(1); opacity: 0.4 }
  25% { transform: scale(1.02); opacity: 0.6 }
  50% { transform: scale(1.05); opacity: 0.7 }
  75% { transform: scale(1.02); opacity: 0.6 }
  100% { transform: scale(1); opacity: 0.4 }
}

@keyframes pulseHeart {
  0% { transform: scale(1); }
  30% { transform: scale(1.3); }
  60% { transform: scale(1); }
  100% { transform: scale(1); }
}











































































  
  /* Responsive Section */
  #therapist-intro {
    max-width: 1300px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(131, 58, 180, 0.3);
    animation: fadeIn 1.5s ease forwards;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease-in-out;
  }
  @media (max-width: 1024px) {
    #therapist-intro {
      padding: 1.2rem;
      border-radius: 12px;
    }
  }
  @media (max-width: 720px) {
    #therapist-intro {
      padding: 1.2rem;
      border-radius: 12px;
    }
  }
  @media (max-width: 480px) {
    #therapist-intro {
      padding: 1.2rem;
      border-radius: 12px;
    }
  }
  @media (max-width: 390px) {
    #therapist-intro {
      padding: 1.2rem;
      border-radius: 12px;
    }
  }
  

  
  .intro-headline {
    font-size: 2rem;
    background: var(--insta-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .intro-text {
    font-size: 1.1rem;
    color: #e6e6e6;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .intro-text strong {
    color: var(--insta-yellow);
  }
  
  .injected-space {
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-left: 4px solid rgb(179, 233, 217);
    margin: 1.5rem 0;
    border-radius: 10px;
    color: #ddd;
    text-align: center;
  }
  
  /* Button */
  .start-quiz-journey {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    color: white;
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
  }
  .start-quiz-journey:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(252, 175, 69, 0.5);
    background: linear-gradient(to right,#8b5cf6, #ec4899 );
  }
  
  /* Glow effect */
  .soft-glow {
    text-shadow: 0 0 6px rgba(252, 175, 69, 0.4);
  }
  
  /* Animations */
  .fade-in-soft {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s ease-out forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
/* Header Container */
#entry-portal {
    max-width: 1300px;
    margin: 5vh auto;
    margin-top: -25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInPop 1s ease forwards;
    display: none; /* Controlled by JS */
  }
  
  /* Headline Style */
  .headline-hero {
    font-size: 2.2rem;
    background: var(--insta-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 1.2rem;
  }
  
  /* Subtext Style */
  .subtext-flow {
    font-size: 1.05rem;
    color: #e4e4e4;
    margin-bottom: 2rem;
    line-height: 1.8;
  }
  
  .subtext-flow i.small-note {
    color: var(--insta-yellow);
    font-style: italic;
    font-size: 0.95rem;
    display: block;
    margin-top: 0.8rem;
  }
  
  /* CTA Button */
  .button-ctaxxl {
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 999px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 0 12px rgba(131, 58, 180, 0.4);
  }
  .button-ctaxxl:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(252, 175, 69, 0.5);
    background: linear-gradient(to right, #8b5cf6, #ec4899 );
  }
  
  /* Animated glow pulse */
  .animate-glow {
    animation: pulseGlow 3s ease-in-out infinite;
  }
  
  @keyframes pulseGlow {
    0%, 100% {
      box-shadow: 0 0 10px rgba(225, 48, 108, 0.3), 0 0 20px rgba(252, 175, 69, 0.2);
    }
    50% {
      box-shadow: 0 0 20px rgba(252, 175, 69, 0.4), 0 0 40px rgba(131, 58, 180, 0.3);
    }
  }
  
  /* Fade In + Pop Animation */
  @keyframes fadeInPop {
    0% {
      opacity: 0;
      transform: scale(0.92) translateY(20px);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }
/* Question Stack Container */
#question-stack {
    max-width: 1300px;
    margin: 4vh auto;
    margin-top: -6px;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(193, 53, 132, 0.2);
    backdrop-filter: blur(8px);
    animation: fadeInPop 0.8s ease-out forwards;
    display: none; /* Controlled by JS */
  }
  
  /* Question Block */
  .q-block {
    margin-bottom: 3rem;
    animation: slideInSoft 0.8s ease-out;
  }
  
  /* Question Prompt */
  .q-prompt {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    background: var(--insta-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
  }
  
  /* Option Buttons Grid */
  .q-options-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    justify-content: center;
  }
  
  /* Responsive Grid */
  @media screen and (min-width: 600px) {
    .q-options-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media screen and (min-width: 900px) {
    .q-options-grid {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  
  /* Option Button Style */
  .btn-choice {
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 10px rgba(225, 48, 108, 0.3);
  }
  .btn-choice:hover {
    transform: scale(1.03);
    box-shadow: 0 0 16px rgba(225, 48, 108, 0.4);
    background: linear-gradient(to right, #8b5cf6, #ec4899);
  }
  
.btn-choice {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}


  /* Slide In Soft Animation */
  @keyframes slideInSoft {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* Share Buttons Wrapper */
.a2a_kit {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 18px rgba(193, 53, 132, 0.2);
    animation: fadeInShare 0.8s ease-out;
    margin-left: 10px;
  }
  
  /* Style each button */
  .a2a_kit a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--insta-gradient);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 8px rgba(225, 48, 108, 0.3);
  }
  .a2a_kit a:hover {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(225, 48, 108, 0.4);
  }
  
  /* Icons inside AddToAny buttons */
  .a2a_kit svg,
  .a2a_kit img {
    width: 60%;
    height: 60%;
    object-fit: contain;
  }
  
  /* Responsive Share Box */
  @media screen and (max-width: 480px) {
    .a2a_kit {
      gap: 0.75rem;
      padding: 0.75rem;
    }
    .a2a_kit a {
      width: 44px;
      height: 44px;
    }
  }
  
  /* Fade In Animation */
  @keyframes fadeInShare {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* Instagram Gradient Variable */
  :root {
    --insta-gradient: linear-gradient(135deg, #ffb477, #fd7eb7, #c86efc, #7d88ff);
  }
/* Footer Container */
footer {
  position: relative;
  width: 100vw; /* Full viewport width */
  left: 50%;
  transform: translateX(-50%); /* Center it precisely */
  background: linear-gradient(135deg, #ffb477, #fd7eb7, #c86efc, #7d88ff);
  color: #fff;
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: 0 -6px 12px rgba(88, 81, 219, 0.3);
  z-index: 10;
}



  
  /* Responsive Button Wrapper */
  footer .flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  /* Footer Buttons */
  .footer-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
  }
  .footer-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }
  
  /* Copyright Text */
  footer p {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 600px) {
    .footer-button {
      width: 100%;
      padding: 0.75rem;
      font-size: 0.95rem;
    }
  
    footer p {
      font-size: 1rem;
    }
  }
/* Modal Styles - Instagram Themed */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeInModal 0.4s ease forwards;
  }
  
  .modal-content {
    background: linear-gradient(135deg, #262626, #1a1a1a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    color: #fafafa;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    overflow-y: auto;
    max-height: 90vh;
  }
  
  .modal-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff; /* Instagram gradient base */
    text-align: center;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .modal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #dbdbdb;
    white-space: pre-line;
  }
  
  .modal-close-x {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.4rem;
    color: #fafafa;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .modal-close-x:hover {
    transform: scale(1.2);
    color: #e6683c;
  }
  
  .modal-overlay {
    pointer-events: auto;
  }
  
  body.modal-open {
    overflow: hidden;
  }
  
  @media (max-width: 768px) {
    .modal-content {
      padding: 1.5rem;
      font-size: 0.95rem;
    }
  
    .modal-content h2 {
      font-size: 1.4rem;
    }
  
    .modal-close-x {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .modal-content {
      padding: 1rem;
    }
  
    .modal-content h2 {
      font-size: 1.2rem;
    }
  
    .modal-content p {
      font-size: 0.9rem;
    }
  }
  
  @keyframes fadeInModal {
    from {
      opacity: 0;
      transform: translateY(20px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
/* PDF Clone Styling */
.pdf-clone {
    background: #fff;
    padding: 20px;
    color: #0000;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    font-family: sans-serif;
  }
  /* MENU IS HERE Went on to prove the first sometimes will be the last as said in the bible */

  /* Ensure header stretches full width of the viewport */
  .site-header {
    position: sticky;
    top: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #ffb477, #fd7eb7, #c86efc, #7d88ff);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  

/* Reset container spacing and ensure it fits device width */
.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: nowrap; /* Ensure logo & menu-icon stay on same line */
  box-sizing: border-box;
  max-height: 60px;
}

/* Extra menu select */



  
  /* ======= Logo ======= */
  
  
  .beginning{
    display: inline-flex;
  }

  /* ======= Menu Toggle (Checkbox Hidden) ======= */
  .menu-toggle {
    display: none;
  }
  
  /* ======= Menu Icon Toggle Style ======= */
  /* ======= Menu Icon Toggle Style ======= */
.menu-icon {
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s ease;
  z-index: 1100;
  position: absolute;
  top: -4px;
  right: 20px;
  display: none;
}

/* Default icon (☰) */
.menu-icon::before {
  content: "\2630"; /* ☰ */
  display: block;
  text-align: center;
  transition: opacity 0.3s ease;
}

/* Show ✕ when menu is checked */
.menu-toggle:checked ~ .menu-icon::before {
  content: "\2715"; /* ✕ */
}

  
  /* ======= Nav Links Common ======= */
  .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; /* mobile default */
    align-items: center;
    gap: 15px;
  }
  
  .nav-links.desktop-menu {
    flex-direction: row;
    justify-content: center;
    margin-left: 35px;
    gap: 15px;
  }
  
  .nav-link {
    position: relative;
    margin-top: -100px;
    font-weight: 500;
    font-size: 1rem;
    height: 50px;
    text-align: center;
    text-decoration: none;
    background: black;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #ff7300, #ff0073, #a200ff, #0015ff) 1;
    border-radius: 50px;
    
  }


  .nav-links .mobile-menu{
    margin-top: -20px;
  }
  
  .categories-list{
    position: relative;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 1rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    background: black;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    border-image: linear-gradient(135deg, #ff7300, #ff0073, #a200ff, #0015ff) 1;
    
  }

   .categories-list2{
    position: relative;
    border-radius: 0%;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    color: rgb(0, 0, 0);
    text-decoration: none;
    background: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    border-image: linear-gradient(135deg, #ff7300, #ff0073, #a200ff, #0015ff) 1;
    
  }


  .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg,  #0015ff, #a200ff, #ff0073, #ff7300);
    transition: 0.3s ease;
    transform: translateX(-50%);
  }
  
  .nav-link:hover::before {
    width: 100%;
  }
  
  .categories-list:hover::before{
    width: 100%;
  }

  .categories-list2:hover::before{
    width: 100%;
  }


  .nav-link:hover {
    background: linear-gradient(135deg, #0015ff, #a200ff, #ff0073, #ff7300);
    background-clip: text;
    -webkit-background-clip: text;
    color: linear-gradient(to right, #ec4899, #8b5cf6);
    
  }

.categories-list:hover {
    background: linear-gradient(135deg, #0015ff, #a200ff, #ff0073, #ff7300);
    background-clip: text;
    -webkit-background-clip: text;
    color: black;
    
}
  
.categories-list2:hover {
    background: linear-gradient(135deg, #0015ff, #a200ff, #ff0073, #ff7300);
    background-clip: text;
    -webkit-background-clip: text;
    color: black;
    
}
  
  /* ======= Desktop Menu ======= */
  .desktop-menu {
    display: flex;
  }
  
  /* ======= Mobile Menu ======= */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: max-height 0.3s ease;
    overflow: hidden;
    max-height: 0;
    z-index: 9999;
  }


  
  .no-scroll {
    overflow: hidden;
    height: 100vh;
  }
  
  /* Show menu when checkbox is checked */
  .menu-toggle:checked ~ .mobile-menu {
    display: flex;
    max-height: 500px;
  }
  
  .mobile-menu li {
    text-align: center;
    margin: 10px 0;
  }
  
  /* ======= Responsive Breakpoint ======= */
  @media (max-width: 1024px) {
    .desktop-menu {
      display: none;
    }
  
    .menu-icon {
      display: block;
    }
  
    .nav-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .logo {
      margin-bottom: 10px;
    }
    .menu-icon::before {
      margin-top: 6px;
    }
  }

  @media (max-width: 1200px) {
    .desktop-menu {
      display: none;
    }
  
    .menu-icon {
      display: block;
    }
  
    .nav-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .logo {
      margin-bottom: 10px;
    }
    .menu-icon::before {
      margin-top: 6px;
    }
  }
  

  @media (max-width: 720px) {
    .nav-link {
      font-size: 0.95rem;
      padding: 10px 12px;
      margin-top: -30px;
    }
  
    .menu-icon {
      font-size: 2rem;
    }
  
    .menu-toggle {
      display: none;
    }
    .nav-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px 20px;
      display: flex;
  
      
      position: relative;
      flex-wrap: nowrap;
      box-sizing: border-box;
      gap: 20px; /* 👈 Optional: space between logo and icon */
    }
    .menu-icon::before {
      margin-top: 6px;
    }
  }
  
  @media (max-width: 480px) {
    .nav-link {
      font-size: 0.95rem;
      padding: 10px 12px;
    }
  
    .menu-icon {
      font-size: 2rem;
    }
  
    .menu-toggle {
      display: none;
    }
    .nav-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px 20px;
      display: flex;
  
      
      position: relative;
      flex-wrap: nowrap;
      box-sizing: border-box;
      gap: 20px; /* 👈 Optional: space between logo and icon */
    }
    .menu-icon::before {
      margin-top: 8px;
    }
  }

  @media (max-width: 390px) {
    .nav-link {
      font-size: 0.95rem;
      padding: 10px 12px;
    }
  
    .menu-icon {
      font-size: 2rem;
    }
  
    .menu-toggle {
      display: none;
    }
    .nav-container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 15px 20px;
      display: flex;
  
      
      position: relative;
      flex-wrap: nowrap;
      box-sizing: border-box;
      gap: 20px; /* 👈 Optional: space between logo and icon */
    }
    .menu-icon::before {
      margin-top: 6px;
    }
  }

/* h1 heading animation */

.animated-heading {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 1px;
  background: linear-gradient(270deg, #f58529, #dd2a7b, #8134af, #515bd4);
  background-size: 800% 800%;
  -webkit-background-clip: text;
  animation: gradientShift 8s linear infinite;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  filter: drop-shadow(0 0 8px #ff55ff) drop-shadow(0 0 15px #ff0080);
  overflow: hidden;
  will-change: transform;
  font-size: 32px; font-family: cursive;
}

.animated-heading span {
  display: inline-block;
  opacity: 0.9;
  transform: translateY(0px);
  animation: waveFade 3s ease-in-out infinite;
  animation-delay: calc(var(--delay) * 1s);
  color: white;
  text-shadow: 0 0 5px #fff, 0 0 10px #ff00cc, 0 0 20px #ff00cc, 0 0 40px #ff0080;
}

@keyframes waveFade {
  0%, 100% {
    opacity: 0.4;
    transform: translateY(8px);
  }
  50% {
    opacity: 1;
    transform: translateY(-8px);
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* ====== Global Footer Styles ====== */
footer.amoura-footer {
  background: linear-gradient(to right, #4c1d95, #7e22ce, #4c1d95);
  color: #ffffff;
  padding: 80px 20px 40px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

/* Share Callout */
footer .share-callout {
  background: linear-gradient(to right, #ec4899, #8b5cf6);
  padding: 12px 20px;
  border-radius: 30px;
  margin-bottom: -20px;
  font-weight: bold;
  display: inline-block;
  color: #fff;
}

/* Grid Layout */
.amoura-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin: 120px auto 60px;
  max-width: 1400px;
  padding: 0 20px;
}

/* Columns */
.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #8b5cf6;
  padding-bottom: 0.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a,
.footer-col ul li button {
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.footer-col ul li a:hover,
.footer-col ul li button:hover {
  color: #f472b6;
  text-decoration: underline;
}

/* Footer Quote */
.footer-quote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d5db;
  margin-top: 0.5rem;
}

/* Footer Base */
.amoura-footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.amoura-footer__base p {
  margin: 5px 0;
}

/* Social Media Icons */
.footer-social-icons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.footer-social-icons a {
  color: #ffffff;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-social-icons a:hover {
  color: #f472b6;
}

/* Share Buttons Block */
.a2a_kit {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .footer-col h4 {
    font-size: 1.1rem;
  }

  .footer-col ul li a,
  .footer-col ul li button {
    font-size: 0.9rem;
  }

  .footer-quote {
    font-size: 0.9rem;
  }

  .amoura-footer__grid {
    margin-top: 100px;
    gap: 30px;
  }

  .footer-social-icons {
    justify-content: center;
  }
}

.footer-col ul li img {
  width: 16px !important;
  height: 16px !important;
  display: inline-block !important;
  vertical-align: middle !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
  margin-top: -1px !important; /* micro alignment tweak */
}

.home-cube-container {
  position: relative;
  width: 100%;
  top: 50px;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.stage {
  width: 50%;
  height: 120px; /* Increased from 100px */
  perspective: 1000px; /* Slightly deeper perspective */
}

.cubespinner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: spincube 12s infinite linear;
  transform-origin: center center;
}

.face {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 64px; /* Slightly smaller if needed */
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
}

/* Increased Z-depth for better separation (from 40px → 100px) */
.face1 { transform: rotateX(0deg) translateZ(100px); color: #f1c40f; }
.face2 { transform: rotateX(60deg) translateZ(100px); color: #ffffff; }
.face3 { transform: rotateX(120deg) translateZ(100px); color: #f85555; }
.face4 { transform: rotateX(180deg) translateZ(100px); color: #f1c40f; }
.face5 { transform: rotateX(240deg) translateZ(100px); color: #ffffff; }
.face6 { transform: rotateX(300deg) translateZ(100px); color: #f85555; }

@keyframes spincube {
  0%     { transform: rotateX(0deg); }
  16.66% { transform: rotateX(-60deg); }
  33.33% { transform: rotateX(-120deg); }
  50%    { transform: rotateX(-180deg); }
  66.66% { transform: rotateX(-240deg); }
  83.33% { transform: rotateX(-300deg); }
  100%   { transform: rotateX(-360deg); }
}


.home-cube-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: -1;
}


#popular-posts {
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
  }

  /* Responsive spacing for header */
  header h1 {
    font-size: 6vw;
  }

  @media (min-width: 480px) {
    header h1 {
      font-size: 24px;
    }
  }

  /* Ensure items inside #popular-posts shrink nicely */
  #popular-posts > * {
    flex: 1 1 calc(100% - 20px); /* full width on small screens */
  }

  @media (min-width: 600px) {
    #popular-posts > * {
      flex: 1 1 calc(50% - 20px); /* 2 columns on medium screens */
    }
  }

  @media (min-width: 900px) {
    #popular-posts > * {
      flex: 1 1 calc(33.333% - 20px); /* 3 columns on large screens */
    }
  }

  @media (min-width: 1200px) {
    #popular-posts > * {
      flex: 1 1 calc(25% - 20px); /* 4 columns on XL screens */
    }
  }


  #container {
  perspective: 800px;
  width: 200px;
  margin: 100px auto;
  user-select: none;
}

.dice-wrapper {
  width: 150px;
  height: 150px;
  position: relative;
  margin: auto;
  transform-style: preserve-3d;
  transition: transform 2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.dice-cube {
  width: 150px;
  height: 150px;
  position: relative;
  transform-style: preserve-3d;
  transform-origin: center center;
  margin: auto;
  cursor: pointer;
}

.dice-side {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgb(255, 255, 255);
  border-radius: 16px;
  
  opacity: 0.95;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Position each dice face */
.side-one   { transform: rotateY(0deg) translateZ(75px); }
.side-two   { transform: rotateY(90deg) translateZ(75px); }
.side-three { transform: rotateY(180deg) translateZ(75px); }
.side-four  { transform: rotateY(-90deg) translateZ(75px); }
.side-five  { transform: rotateX(90deg) translateZ(75px); }
.side-six   { transform: rotateX(-90deg) translateZ(75px); }

/* Dot styles */
.dot {
  width: 25px;
  height: 25px;
  background: #ff0000;
  border-radius: 50%;
  
  position: absolute;
  
}

/* Dot positions */
.dot-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.dot-top-left { top: 25%; left: 25%; }
.dot-top-right { top: 25%; right: 25%; }
.dot-middle-left { top: 50%; left: 25%; transform: translateY(-50%); }
.dot-middle-right { top: 50%; right: 25%; transform: translateY(-50%); }
.dot-bottom-left { bottom: 25%; left: 25%; }
.dot-bottom-right { bottom: 25%; right: 25%; }

#result {
  padding: 10px;
  background: #f0f0f0;
  border-radius: 12px;
  user-select: none;
}

#cooldown-message {
  user-select: none;
}


.updates {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.item {
  width: 180px;
  height: 300px;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255,255,255,0.3) inset;
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;

  &:nth-child(1), &:nth-child(2) {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
  }

  &:nth-child(3) { left: 50%; }
  &:nth-child(4) { left: calc(50% + 220px); }
  &:nth-child(5) { left: calc(50% + 440px); }
  &:nth-child(6) { left: calc(50% + 660px); opacity: 0; }
}

.content {
  width: min(30vw,400px);
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  font: 400 0.85rem helvetica,sans-serif;
  color: white;
  text-shadow: 0 3px 8px rgba(0,0,0,0.5);
  opacity: 0;
  display: none;
}
  .title {
    font-family: 'arial-black';
    text-transform: uppercase;
    font-size: 2.5rem;
    font-family: sans-serif;
    color: rgb(255, 0, 119);
  }

  .description {
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    font-size: 1.5rem;
    font-family: sans-serif;
  }

   button {
    width: fit-content;
    background-color: rgba(0,0,0,0.1);
    color: white;
    border: 2px solid white;
    border-radius: 0.25rem;
    padding: 0.75rem;
    cursor: pointer;
  }


.item:nth-of-type(2) .content {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}

@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  user-select: none;

  & .btn {
    background-color: rgba(255,255,255,0.5);
    color: rgba(0,0,0,0.7);
    border: 2px solid rgba(0,0,0,0.6);
    margin: 0 0.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;

    &:hover {
      background-color: rgba(255,255,255,0.3);
    }
  }
}

@media (width > 650px) and (width < 900px) {
  .content {
    & .title        { font-size: 1rem; }
    & .description  { font-size: 0.7rem; }
    & button        { font-size: 0.7rem; }
  }
  .item {
    width: 160px;
    height: 270px;

    &:nth-child(3) { left: 50%; }
    &:nth-child(4) { left: calc(50% + 170px); }
    &:nth-child(5) { left: calc(50% + 340px); }
    &:nth-child(6) { left: calc(50% + 510px); opacity: 0; }
  }
}

@media (width < 650px) {
  .content {
    & .title        { font-size: 0.9rem; }
    & .description  { font-size: 0.65rem; }
    & button        { font-size: 0.7rem; }
  }
  .item {
    width: 130px;
    height: 220px;

    &:nth-child(3) { left: 50%; }
    &:nth-child(4) { left: calc(50% + 140px); }
    &:nth-child(5) { left: calc(50% + 280px); }
    &:nth-child(6) { left: calc(50% + 420px); opacity: 0; }
  }
}



/* Dark overlay */
.item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45); /* Adjust 0.45 for stronger/weaker darkness */
  z-index: 1;
}

/* Ensure content stays above the overlay */
.item .content {
  position: relative;
  z-index: 2;
}

