/* ========================================
   Siam Amulet Aura - Premium Esoteric Styles
   ======================================== */

/* CSS Variables */
:root {
  --color-bg-primary: #121212;
  --color-bg-secondary: #1a1a2e;
  --color-purple-deep: #4a148c;
  --color-purple-light: #7b1fa2;
  --color-gold: #ffd700;
  --color-gold-light: #ffe44d;
  --color-gold-dark: #b8860b;
  --color-text-primary: #ffffff;
  --color-text-secondary: #e0e0e0;
  --color-text-muted: #a0a0a0;

  --font-heading: "Niramit", sans-serif;
  --font-body: "Sarabun", sans-serif;

  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
  --shadow-gold-strong: 0 0 50px rgba(255, 215, 0, 0.5);
  --shadow-purple: 0 0 30px rgba(74, 20, 140, 0.5);
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.bnt4kopk {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Particle Background */
.wfinqmg8 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.wfinqmg8 [data-particle] {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  animation: float 15s infinite ease-in-out;
  box-shadow: 0 0 10px var(--color-gold);
}

@keyframes float {
  0%,
  100% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1);
  }
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.95) 0%,
    rgba(18, 18, 18, 0) 100%
  );
}

.header[data-scrolled] {
  background: rgba(18, 18, 18, 0.98);
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.qu9l2jwt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kasfhyt1 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ayaaz5k0 {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px var(--color-gold));
}

.q5wp68qk {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-light) 50%,
    var(--color-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.k69rv19g {
  display: flex;
  list-style: none;
  gap: 40px;
}

[data-nav-link] {
  font-family: var(--font-heading);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

[data-nav-link]::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

[data-nav-link]:hover {
  color: var(--color-gold);
}

[data-nav-link]:hover::after {
  width: 100%;
}

/* Mobile Menu Button */
.s6oew4lq {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.s6oew4lq span {
  width: 25px;
  height: 2px;
  background: var(--color-gold);
  transition: all 0.3s ease;
}

.s6oew4lq[data-active] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.s6oew4lq[data-active] span:nth-child(2) {
  opacity: 0;
}

.s6oew4lq[data-active] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Hero Section
   ======================================== */
.y2ozmkjq {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    ellipse at center,
    var(--color-purple-deep) 0%,
    var(--color-bg-primary) 70%
  );
  overflow: hidden;
}

.o84myo7l {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.i1nt6srk {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 20px 60px;
}

.n3be1rrn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  opacity: 0.15;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.dkk46wy4 {
  width: 100%;
  height: 100%;
}

.cq9tq07m {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.cq9tq07m .evu5r5jz {
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-light) 50%,
    var(--color-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.uj1bs9mw {
  font-size: 1.3rem;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.wpxcnnzz {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  opacity: 0.3;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%,
  100% {
    filter: drop-shadow(0 0 10px var(--color-gold));
  }
  50% {
    filter: drop-shadow(0 0 30px var(--color-gold));
  }
}

.a1xmj5y3 {
  width: 100%;
  height: 100%;
}

/* Scroll Indicator */
.z7dzildc {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.falyki7l {
  width: 25px;
  height: 40px;
  border: 2px solid var(--color-gold);
  border-radius: 15px;
  position: relative;
}

.l0qcrity {
  width: 4px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

/* ========================================
   Buttons
   ======================================== */
.ljhv3xx2 {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lxe8b4ts {
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-dark) 100%
  );
  color: var(--color-bg-primary);
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.lxe8b4ts:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

.zzv4t54v {
  position: relative;
  overflow: hidden;
}

.zzv4t54v::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.au4294fq {
  width: 100%;
}

/* ========================================
   Section Styles
   ======================================== */
section {
  padding: 100px 0;
  position: relative;
}

.jsjkppjt {
  text-align: center;
  margin-bottom: 60px;
}

.zo5df5y2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.cfpwj9b2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.wtve27wa {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-gold),
    transparent
  );
}

.h0hhy96b {
  font-size: 1.5rem;
  color: var(--color-gold);
}

/* ========================================
   Aspects Section
   ======================================== */
.p7awloc1 {
  background: linear-gradient(
    180deg,
    var(--color-bg-primary) 0%,
    var(--color-bg-secondary) 50%,
    var(--color-bg-primary) 100%
  );
}

.ucg33qzi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.qcl7ng31 {
  background: linear-gradient(
    145deg,
    rgba(74, 20, 140, 0.3) 0%,
    rgba(18, 18, 18, 0.8) 100%
  );
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.qcl7ng31:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: var(--shadow-gold);
}

.xe4tpapj {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.k3pxg8uf {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.3) 0%,
    transparent 70%
  );
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.mboxd23b {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.dk1hbaa0 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 15px;
}

.pnjgkt3b {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.aim9qvmw {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  opacity: 0.1;
}

/* ========================================
   Ritual Section
   ======================================== */
.jqyranm1 {
  background: radial-gradient(
    ellipse at 30% 50%,
    var(--color-purple-deep) 0%,
    var(--color-bg-primary) 60%
  );
}

.z48dbuex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rw977ve3 {
  position: relative;
}

.ritual-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  box-shadow: var(--shadow-gold);
}

.rsbs27us {
  width: 100%;
  height: 500px;
  background: linear-gradient(
    145deg,
    rgba(74, 20, 140, 0.3) 0%,
    rgba(18, 18, 18, 0.6) 100%
  );
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.waaj0bd3 {
  width: 150px;
  height: 150px;
  animation: rotate 30s linear infinite;
}

.dbggdndc {
  margin-top: 20px;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
}

.kwu94qqw {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.2) 0%,
    transparent 70%
  );
  border-radius: 20px;
  animation: glow 3s ease-in-out infinite;
}

.ff0g258j .zo5df5y2 {
  text-align: left;
}

.ff0g258j .cfpwj9b2 {
  justify-content: flex-start;
  margin-bottom: 30px;
}

.dmtt7glk {
  color: var(--color-text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.dmtt7glk strong {
  color: var(--color-gold);
}

.cq8h1dop {
  list-style: none;
  margin-top: 30px;
}

.cq8h1dop li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  color: var(--color-text-secondary);
}

.cq8h1dop li:last-child {
  border-bottom: none;
}

.gi2lguaa {
  font-size: 1.3rem;
}

/* ========================================
   Quiz Section
   ======================================== */
.ihwedju9 {
  background: linear-gradient(
    180deg,
    var(--color-bg-primary) 0%,
    var(--color-purple-deep) 50%,
    var(--color-bg-primary) 100%
  );
}

.o387wlnu {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(
    145deg,
    rgba(74, 20, 140, 0.4) 0%,
    rgba(18, 18, 18, 0.9) 100%
  );
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
}

.pcjml9n1 {
  margin-bottom: 40px;
}

.ai5e7fz0 {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-top: 10px;
}

.eweqmxal {
  margin-bottom: 30px;
}

.ir0wy5st {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-bottom: 15px;
}

.bvbmhgom {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
}

.y4w3v4wt {
  width: 100%;
  padding: 18px 50px 18px 25px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--color-text-primary);
  background: rgba(18, 18, 18, 0.8);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 50px;
  cursor: pointer;
  appearance: none;
  transition: all 0.3s ease;
}

.y4w3v4wt:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.tc5wgqoc {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold);
  pointer-events: none;
  font-size: 0.8rem;
}

.w26skzwd {
  margin: 30px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  max-height: 0;
  overflow: hidden;
}

.zacoqkpy {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 25px;
}

.npsluf1p {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
}

.zacoqkpy h3 {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.zacoqkpy p {
  color: var(--color-text-secondary);
}

/* ========================================
   Register Section
   ======================================== */
.re4kgsp0 {
  background: radial-gradient(
    ellipse at 70% 50%,
    var(--color-purple-deep) 0%,
    var(--color-bg-primary) 60%
  );
}

.o2iyxuxd {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

.q3hwn0d9 {
  max-width: 500px;
}

.q3hwn0d9 .zo5df5y2 {
  text-align: left;
}

.bfmf5e8j {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 5px;
}

.q9fhvzad {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.z0auosb9 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.frq1mx1r {
  display: flex;
  flex-direction: column;
}

.x0qpr4e6 {
  font-family: var(--font-heading);
  color: var(--color-gold);
  margin-bottom: 8px;
  font-size: 1rem;
}

.u4u5qdje {
  padding: 15px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: rgba(18, 18, 18, 0.6);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.u4u5qdje:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.u4u5qdje::placeholder {
  color: var(--color-text-muted);
}

.h3yztki0 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ipnv2m7h {
  width: 350px;
  height: 350px;
  opacity: 0.3;
  animation: rotate 60s linear infinite;
}

/* ========================================
   Reviews Section
   ======================================== */
.gk2xrtbj {
  background: linear-gradient(
    180deg,
    var(--color-bg-primary) 0%,
    var(--color-bg-secondary) 50%,
    var(--color-bg-primary) 100%
  );
}

.xs6b06n7 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ito3x0cs {
  background: linear-gradient(
    145deg,
    rgba(74, 20, 140, 0.2) 0%,
    rgba(18, 18, 18, 0.8) 100%
  );
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.ito3x0cs:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.3);
}

.m8vlrzcu {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.mvoht61v {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.ay473g61 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.tjpwtnef {
  color: var(--color-gold);
  font-weight: 500;
}

.d3v9vxro {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, #0a0a15 100%);
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  padding: 60px 0 30px;
}

.ucthcdn2 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.je3mv7zb .kasfhyt1 {
  margin-bottom: 20px;
}

.alrbx300 {
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 300px;
}

.c4d8btlt h4,
.b5i3zzsc h4 {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.c4d8btlt ul {
  list-style: none;
}

.c4d8btlt li {
  margin-bottom: 12px;
}

.c4d8btlt a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.c4d8btlt a:hover {
  color: var(--color-gold);
}

.a5hnimcj,
.l3cofywk {
  color: var(--color-text-secondary);
  line-height: 1.8;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.fnndiyg9 {
  color: var(--color-gold);
}

.g4qmu3da {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  color: var(--color-text-muted);
}

/* ========================================
   Modal
   ======================================== */
.fon7acct {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.ahafekzs {
  background: linear-gradient(
    145deg,
    rgba(74, 20, 140, 0.6) 0%,
    rgba(18, 18, 18, 0.95) 100%
  );
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 30px;
  padding: 40px;
  max-width: 450px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.erd3mssi {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.erd3mssi:hover {
  color: var(--color-gold);
}

.wix8w5jo {
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 10px;
}

.pu08xm36 {
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 30px;
}

.kt4syofa {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Loading Animation */
.nv3vk95k {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.st40ixmk {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}

.l47a4bje {
  width: 100%;
  height: 100%;
}

.rjthea41 {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.ow2ftq5a {
  display: flex;
  gap: 8px;
}

.ow2ftq5a span {
  width: 10px;
  height: 10px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: dotPulse 1.4s infinite ease-in-out;
}

.ow2ftq5a span:nth-child(1) {
  animation-delay: 0s;
}
.ow2ftq5a span:nth-child(2) {
  animation-delay: 0.2s;
}
.ow2ftq5a span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* Success State */
.i339g79u {
  text-align: center;
  padding: 40px 0;
}

.gk23m12j {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--color-gold) 0%,
    var(--color-gold-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: var(--color-bg-primary);
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* ========================================
   Fade-in Animation
   ======================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

[data-animate][data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .ucg33qzi,
  .xs6b06n7 {
    grid-template-columns: repeat(2, 1fr);
  }

  .z48dbuex,
  .o2iyxuxd {
    grid-template-columns: 1fr;
  }

  .rw977ve3 {
    order: -1;
  }

  .ritual-img,
  .rsbs27us {
    height: 350px;
  }

  .h3yztki0 {
    display: none;
  }

  .ucthcdn2 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .alrbx300 {
    max-width: none;
  }
}

@media (max-width: 768px) {
  #nav {
    display: none;
  }

  .s6oew4lq {
    display: flex;
  }

  #nav {
    display: none;
  }

  .k69rv19g {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cq9tq07m {
    font-size: 2rem;
  }

  .uj1bs9mw {
    font-size: 1rem;
  }

  .n3be1rrn {
    width: 250px;
    height: 250px;
  }

  .zo5df5y2 {
    font-size: 1.8rem;
  }

  .ucg33qzi,
  .xs6b06n7 {
    grid-template-columns: 1fr;
  }

  .qcl7ng31 {
    padding: 30px 20px;
  }

  .o387wlnu {
    padding: 30px 20px;
  }

  .ahafekzs {
    padding: 30px 20px;
  }

  .ucthcdn2 {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .cq9tq07m {
    font-size: 1.6rem;
  }

  .ljhv3xx2 {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .zo5df5y2 {
    font-size: 1.5rem;
  }

  .wtve27wa {
    width: 40px;
  }
}
