/* ============================================
   Siam Sacred Aura - Modern Mysticism Theme
   ============================================ */

/* CSS Variables */
:root {
  --color-bg-deep: #0f172a;
  --color-bg-dark: #1e293b;
  --color-bg-darker: #0b1120;
  --color-bronze: #cd7f32;
  --color-gold: #d4af37;
  --color-gold-light: #f4d06f;
  --color-gold-dark: #aa8c2c;
  --color-text-primary: #f8fafc;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;

  --font-primary: "Niramit", sans-serif;
  --font-thai: "Niramit", "Sarabun", sans-serif;

  --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
  --shadow-glow-strong: 0 0 50px rgba(212, 175, 55, 0.5);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);

  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Container */
.vepf0l0n {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

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

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  }
}

@keyframes particle-float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

@keyframes yant-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

.h04pejpp {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 50%;
  animation: particle-float 8s infinite;
  opacity: 0;
}

.h04pejpp:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.h04pejpp:nth-child(2) {
  left: 20%;
  animation-delay: 1s;
}
.h04pejpp:nth-child(3) {
  left: 30%;
  animation-delay: 2s;
}
.h04pejpp:nth-child(4) {
  left: 40%;
  animation-delay: 3s;
}
.h04pejpp:nth-child(5) {
  left: 50%;
  animation-delay: 4s;
}
.h04pejpp:nth-child(6) {
  left: 60%;
  animation-delay: 5s;
}
.h04pejpp:nth-child(7) {
  left: 70%;
  animation-delay: 6s;
}
.h04pejpp:nth-child(8) {
  left: 80%;
  animation-delay: 7s;
}
.h04pejpp:nth-child(9) {
  left: 90%;
  animation-delay: 2.5s;
}
.h04pejpp:nth-child(10) {
  left: 15%;
  animation-delay: 3.5s;
}
.h04pejpp:nth-child(11) {
  left: 85%;
  animation-delay: 4.5s;
}
.h04pejpp:nth-child(12) {
  left: 45%;
  animation-delay: 1.5s;
}

/* ============================================
   HEADER
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(
    180deg,
    var(--color-bg-darker) 0%,
    transparent 100%
  );
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.header.wu3jyj1o {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

/* Logo */
.mal7taog {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qolrxypl {
  position: relative;
  width: 50px;
  height: 50px;
}

.s14imnhs {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 43px solid var(--color-gold);
  opacity: 0.9;
  filter: drop-shadow(0 0 10px var(--color-gold));
}

.q2kev22o {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 20px;
  height: 14px;
  background: var(--color-bg-deep);
  border-radius: 50%;
  border: 3px solid var(--color-bronze);
  animation: shimmer 3s infinite;
}

.q2kev22o::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold);
}

.d6g48qtr {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Navigation */
.mv5lb1cq {
  display: flex;
  gap: 40px;
  list-style: none;
}

.fqexo151 {
  font-size: 1rem;
  color: var(--color-text-secondary);
  position: relative;
  padding: 8px 0;
}

.fqexo151::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-bronze), var(--color-gold));
  transition: var(--transition-smooth);
}

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

.fqexo151:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.gf3dwuma {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.gf3dwuma span {
  width: 28px;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition-smooth);
}

/* ============================================
   HERO SECTION
   ============================================ */

.veh1qqpm {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  background:
    radial-gradient(
      ellipse at 50% 30%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(205, 127, 50, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, var(--color-bg-deep) 0%, var(--color-bg-dark) 100%);
  overflow: hidden;
}

/* Yant Pattern Background */
.veh1qqpm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(212, 175, 55, 0.03) 40px,
      rgba(212, 175, 55, 0.03) 41px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(212, 175, 55, 0.03) 40px,
      rgba(212, 175, 55, 0.03) 41px
    );
  pointer-events: none;
}

.hc8e2cbj {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 60px 20px;
}

/* Sacred Geometry Decoration */
.y45ojgrd {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  animation: yant-rotate 120s linear infinite;
}

.y45ojgrd::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
}

.y45ojgrd::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
}

.uwyimilw {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: 10px 25px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--color-gold);
  animation: shimmer 3s infinite;
}

.ofvqps83 {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold);
}

.dtco7uu3 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(
    135deg,
    var(--color-gold-light) 0%,
    var(--color-gold) 50%,
    var(--color-bronze) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
}

.jr6vymll {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto 45px;
  line-height: 1.8;
}

/* CTA Button */
.bahowogw {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    var(--color-bronze) 0%,
    var(--color-gold) 100%
  );
  color: var(--color-bg-darker);
  font-family: var(--font-thai);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 18px 45px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.bahowogw::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: var(--transition-smooth);
}

.bahowogw:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-strong);
}

.bahowogw:hover::before {
  left: 100%;
}

.qnand6n8 {
  font-size: 1.3rem;
}

/* Scroll Indicator */
.lbwjpjfo {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  animation: float 2s infinite;
}

.zmzut9t7 {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
  padding: 120px 0;
  position: relative;
}

.zdaxmlsb {
  text-align: center;
  margin-bottom: 70px;
}

.ywgqsr40 {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  padding: 8px 25px;
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.jaurfxdo {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.d1y8vq3w {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   THREE POWERS SECTION
   ============================================ */

.ikojqlgp {
  background: linear-gradient(
    180deg,
    var(--color-bg-dark) 0%,
    var(--color-bg-deep) 100%
  );
}

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

.uswm9zbo {
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.8) 0%,
    rgba(15, 23, 42, 0.9) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 25px;
  padding: 45px 35px;
  text-align: center;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.uswm9zbo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-bronze),
    var(--color-gold),
    var(--color-bronze)
  );
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.uswm9zbo:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    var(--shadow-card),
    0 0 40px rgba(212, 175, 55, 0.15);
}

.uswm9zbo:hover::before {
  transform: scaleX(1);
}

.syqts01q {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(205, 127, 50, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.mbvicdyu {
  font-size: 1.5rem;
  color: var(--color-gold);
  margin-bottom: 15px;
}

.t306bav3 {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 25px;
}

.qsbyakez {
  list-style: none;
  text-align: left;
}

.qsbyakez li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--color-text-primary);
  font-size: 0.95rem;
}

.qsbyakez li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

/* ============================================
   RITUALS SECTION
   ============================================ */

.ldpttcxe {
  background: linear-gradient(
    180deg,
    var(--color-bg-deep) 0%,
    var(--color-bg-darker) 100%
  );
  position: relative;
}

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

.bohkoil1 {
  padding: 40px;
}

.v41pvzuk {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 25px;
}

.x0c4vqsk {
  color: var(--color-text-secondary);
  line-height: 2;
  margin-bottom: 35px;
}

.x1y7hwjz {
  list-style: none;
}

.x1y7hwjz li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.xp1sn7my {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, var(--color-bronze), var(--color-gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.wdwl93wz {
  color: var(--color-text-primary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Ritual Image Card */
.erhdnvuo {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.jw284gc8 {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: sepia(20%) contrast(1.1);
}

.rkhlmjda {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(
    0deg,
    var(--color-bg-darker) 0%,
    transparent 100%
  );
}

.a7t98cko {
  font-size: 1.3rem;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.f3x5e2k2 {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* Decorative Frame */
.erhdnvuo::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  pointer-events: none;
}

/* ============================================
   QUIZ SECTION
   ============================================ */

.l4j1ej4k {
  background: linear-gradient(
    180deg,
    var(--color-bg-darker) 0%,
    var(--color-bg-deep) 100%
  );
  position: relative;
}

.dv93vrig {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.6) 0%,
    rgba(15, 23, 42, 0.8) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  padding: 50px;
  box-shadow: var(--shadow-card);
}

.hmqxuvtu {
  text-align: center;
  margin-bottom: 40px;
}

.ao3tdf4a {
  font-size: 1.8rem;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.kqkx8fqz {
  color: var(--color-text-secondary);
  font-size: 1rem;
}

/* Quiz Form */
.adsai479 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.a5sevg6p {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.solkyzn6 {
  font-size: 1.1rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

.nb1q70rv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.xyqum8n5 {
  position: relative;
}

.xyqum8n5 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.e51azza0 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 25px;
  background: rgba(212, 175, 55, 0.05);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--color-text-secondary);
  font-size: 1rem;
}

.xyqum8n5 input:checked + .e51azza0 {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(205, 127, 50, 0.15) 100%
  );
  border-color: var(--color-gold);
  color: var(--color-gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
}

.e51azza0:hover {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
}

.lgyzmgql {
  font-size: 1.4rem;
}

/* Quiz Submit Button */
.bwst66dk {
  width: 100%;
  padding: 20px;
  background: linear-gradient(
    135deg,
    var(--color-bronze) 0%,
    var(--color-gold) 100%
  );
  color: var(--color-bg-darker);
  font-family: var(--font-thai);
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
  margin-top: 10px;
}

.bwst66dk:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-strong);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-bg-darker);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.gaxijv56 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

.ge8xb2ch {
  max-width: 350px;
}

.m1r3c5mk {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.fzc6ssk5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold);
}

.ku6n1c1w {
  color: var(--color-text-secondary);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.hbc9v3rw {
  display: flex;
  gap: 15px;
}

.grkmmll3 {
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.grkmmll3:hover {
  background: var(--color-gold);
  color: var(--color-bg-darker);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Footer Links */
.j250ng1l {
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: 25px;
  font-weight: 600;
}

.s3x16nyk {
  list-style: none;
}

.s3x16nyk li {
  margin-bottom: 15px;
}

.s3x16nyk a {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.s3x16nyk a:hover {
  color: var(--color-gold);
  padding-left: 8px;
}

/* Footer Contact */
.z635az3j {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 2;
}

.qkxujr2k {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.vrykqhsc {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Footer Bottom */
.i5wdspg2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 35px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

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

.bzinom5d {
  display: flex;
  gap: 30px;
}

.bzinom5d a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

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

.nhrfxk3q {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 10, 20, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.e5uoirpf {
  background: linear-gradient(
    145deg,
    var(--color-bg-dark) 0%,
    var(--color-bg-deep) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  padding: 50px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-glow-strong), var(--shadow-card);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.nhrfxk3q[style*="display: flex"] .e5uoirpf {
  transform: scale(1) translateY(0);
}

.qzek5enw {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--color-text-secondary);
  font-size: 1.5rem;
}

.qzek5enw:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.x3sl5ej7 {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(205, 127, 50, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.t3akrp2y {
  font-size: 1.6rem;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 10px;
}

.quqe39zs {
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 35px;
  font-size: 0.95rem;
}

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

.rux3wlxx {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h004h25e {
  width: 100%;
  padding: 18px 25px;
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  color: var(--color-text-primary);
  font-family: var(--font-thai);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.h004h25e:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

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

.waprhz2i {
  width: 100%;
  padding: 20px;
  background: linear-gradient(
    135deg,
    var(--color-bronze) 0%,
    var(--color-gold) 100%
  );
  color: var(--color-bg-darker);
  font-family: var(--font-thai);
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
}

.waprhz2i:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .zi7kktcs {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecr0qzex {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .gaxijv56 {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .mv5lb1cq {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-darker);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }

  .mv5lb1cq[style*="display: flex"] {
    display: flex !important;
  }

  .gf3dwuma {
    display: flex;
  }

  .zi7kktcs {
    grid-template-columns: 1fr;
  }

  .nb1q70rv {
    grid-template-columns: 1fr;
  }

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

  .ge8xb2ch {
    max-width: 100%;
  }

  .hbc9v3rw {
    justify-content: center;
  }

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

  .bzinom5d {
    gap: 20px;
  }

  .dv93vrig {
    padding: 35px 25px;
  }

  .e5uoirpf {
    padding: 35px 25px;
  }

  .jw284gc8 {
    height: 350px;
  }
}

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

  .jr6vymll {
    font-size: 1rem;
  }

  .bahowogw {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .section {
    padding: 80px 0;
  }

  .uswm9zbo {
    padding: 35px 25px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.text-bronze {
  color: var(--color-bronze);
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* Selection Color */
::selection {
  background: rgba(212, 175, 55, 0.3);
  color: var(--color-text-primary);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}
