/* ============================================
   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 */
.gf3pvbnm {
  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 */
.kolsqt0u {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

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

.go1ggz8k:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
}
.go1ggz8k:nth-child(2) {
  left: 20%;
  animation-delay: 1s;
}
.go1ggz8k:nth-child(3) {
  left: 30%;
  animation-delay: 2s;
}
.go1ggz8k:nth-child(4) {
  left: 40%;
  animation-delay: 3s;
}
.go1ggz8k:nth-child(5) {
  left: 50%;
  animation-delay: 4s;
}
.go1ggz8k:nth-child(6) {
  left: 60%;
  animation-delay: 5s;
}
.go1ggz8k:nth-child(7) {
  left: 70%;
  animation-delay: 6s;
}
.go1ggz8k:nth-child(8) {
  left: 80%;
  animation-delay: 7s;
}
.go1ggz8k:nth-child(9) {
  left: 90%;
  animation-delay: 2.5s;
}
.go1ggz8k:nth-child(10) {
  left: 15%;
  animation-delay: 3.5s;
}
.go1ggz8k:nth-child(11) {
  left: 85%;
  animation-delay: 4.5s;
}
.go1ggz8k: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.zo9thqfp {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

.w30v7acc {
  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));
}

.wqqun1iy {
  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;
}

.wqqun1iy::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);
}

.dpuqt92j {
  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 */
.uzfqxoft {
  display: flex;
  gap: 40px;
  list-style: none;
}

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

.k26bug4a::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);
}

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

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

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

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

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

.m4qlzv5b {
  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 */
.m4qlzv5b::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;
}

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

/* Sacred Geometry Decoration */
.bwajm1g0 {
  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;
}

.bwajm1g0::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%;
}

.bwajm1g0::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%;
}

.fe6qj38b {
  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;
}

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

.o7oq4gjf {
  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));
}

.bstcc8gg {
  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 */
.vlri6yi4 {
  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;
}

.vlri6yi4::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);
}

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

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

.uuxr3jx5 {
  font-size: 1.3rem;
}

/* Scroll Indicator */
.cq8pyqw8 {
  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;
}

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

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

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

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

.cl6f3rr1 {
  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;
}

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

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

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

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

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

.ocjzbhfy {
  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;
}

.ocjzbhfy::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);
}

.ocjzbhfy: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);
}

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

.h31buzlr {
  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);
}

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

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

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

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

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

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

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

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

.uruu096r {
  padding: 40px;
}

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

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

.gs5geg2u {
  list-style: none;
}

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

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

.g80p8yzb {
  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);
}

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

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

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

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

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

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

/* Decorative Frame */
.pzqbb3b5::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
   ============================================ */

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

.f56bjpik {
  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);
}

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

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

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

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

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

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

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

.w8x5igp3 {
  position: relative;
}

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

.ter7q5k1 {
  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;
}

.w8x5igp3 input:checked + .ter7q5k1 {
  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);
}

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

.f9eqw4rb {
  font-size: 1.4rem;
}

/* Quiz Submit Button */
.gj1f0jni {
  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;
}

.gj1f0jni: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);
}

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

.cvo8c0n5 {
  max-width: 350px;
}

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

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

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

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

.nvyehtsl {
  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);
}

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

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

.e2hqbx96 {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

.goi7dm8k {
  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;
}

.wrmp1y8t {
  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;
}

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

.b8jue7h3 {
  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;
}

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

.xdl2fffo {
  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);
}

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

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

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

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

.dyo0nbsf {
  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);
}

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

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

.aml1e866 {
  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);
}

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

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

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

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

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

@media (max-width: 768px) {
  .uzfqxoft {
    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);
  }

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

  .uqerseg0 {
    display: flex;
  }

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

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

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

  .cvo8c0n5 {
    max-width: 100%;
  }

  .qhxprbus {
    justify-content: center;
  }

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

  .ev3l704g {
    gap: 20px;
  }

  .f56bjpik {
    padding: 35px 25px;
  }

  .wrmp1y8t {
    padding: 35px 25px;
  }

  .gbvgdxb6 {
    height: 350px;
  }
}

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

  .bstcc8gg {
    font-size: 1rem;
  }

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

  .section {
    padding: 80px 0;
  }

  .ocjzbhfy {
    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);
}
