/* EYE RESONANCE THAILAND - Digital Eye Defense */
/* Futuristic Tech-Aesthetic & Liquid Design */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;400;500;600;700&display=swap');

:root {
  --midnight-blue: #0F172A;
  --midnight-light: #1E293B;
  --neon-cyan: #22D3EE;
  --liquid-gold: #FBBF24;
  --gold-glow: #FCD34D;
  --cyan-glow: #67E8F9;
  --white: #FFFFFF;
  --gray-light: #94A3B8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Chakra Petch', sans-serif;
  background: var(--midnight-blue);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at 20% 80%, rgba(34, 211, 238, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(34, 211, 238, 0.05) 0%, transparent 70%);
  z-index: -2;
  animation: pulseBackground 15s ease-in-out infinite;
}

@keyframes pulseBackground {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* Resonance Waves */
.bmmxqby8 {
  position: fixed;
  border-radius: 50%;
  border: 1px solid rgba(34, 211, 238, 0.3);
  animation: waveExpand 8s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}

.bmmxqby8:nth-child(1) {
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.bmmxqby8:nth-child(2) {
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  animation-delay: 2.5s;
}

.bmmxqby8:nth-child(3) {
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  animation-delay: 5s;
}

@keyframes waveExpand {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
    border-color: rgba(34, 211, 238, 0.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(15);
    opacity: 0;
    border-color: rgba(34, 211, 238, 0);
  }
}

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

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(34, 211, 238, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 15px 0;
  box-shadow: 0 4px 30px rgba(34, 211, 238, 0.1);
}

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

.mrch7wpu {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--liquid-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
  letter-spacing: 3px;
}

.ku6hcfnp {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: 'Chakra Petch', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ku6hcfnp:hover {
  background: var(--neon-cyan);
  color: var(--midnight-blue);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.6);
  transform: translateY(-2px);
}

/* Hero Section */
.shpvr5yk {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

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

.lo6arrpv {
  z-index: 2;
}

.vnttby3p {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--neon-cyan);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.shpvr5yk h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--neon-cyan) 50%, var(--liquid-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rxphvkq2 {
  font-size: 1.2rem;
  color: var(--gray-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.sntx7ogw {
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--liquid-gold));
  border: none;
  color: var(--midnight-blue);
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 40px rgba(34, 211, 238, 0.4);
}

.sntx7ogw:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(34, 211, 238, 0.6);
}

.blh94kx9 {
  position: relative;
  z-index: 1;
}

.u9cqvnnd {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.u9cqvnnd::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--neon-cyan), transparent, var(--liquid-gold), transparent);
  animation: rotateBorder 4s linear infinite;
  z-index: -1;
}

@keyframes rotateBorder {
  100% { transform: rotate(360deg); }
}

.ej16cizp {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Iris Overlay Effect */
.i9bnjuu8 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: irisPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes irisPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.2; }
}

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

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

.gpy6peq4 h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--liquid-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gpy6peq4 p {
  color: var(--gray-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Digital Damage Section */
.u0g0nh0t {
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.05), transparent);
}

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

.qdf8qhjw h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.qdf8qhjw p {
  color: var(--gray-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.kxeh0upu {
  position: relative;
  width: 100%;
  height: 300px;
  background: var(--midnight-light);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.kxeh0upu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.3), transparent);
  animation: blueLightScan 3s ease-in-out infinite;
}

@keyframes blueLightScan {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: -100%; }
}

.d1sbcryi {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.d1sbcryi span {
  display: block;
  font-size: 1.2rem;
  color: var(--neon-cyan);
  font-weight: 600;
}

/* Symptom Tiles */
.qw5ncmue {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.is6mjdae {
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.is6mjdae::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.is6mjdae:hover {
  transform: translateY(-10px);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.2);
}

.is6mjdae:hover::before {
  opacity: 1;
}

.qn01bjh1 {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.is6mjdae h4 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.is6mjdae p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* Resonance Formula Section */
.bmyzbgeq {
  background: linear-gradient(180deg, transparent, rgba(251, 191, 36, 0.05), transparent);
}

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

.rn7e5jsd {
  position: relative;
}

.x19wqnp4 {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.rv9sb04l h3 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--liquid-gold);
}

.rv9sb04l p {
  color: var(--gray-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.c974s2rl {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.rpkr4d41 {
  flex: 1;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid var(--liquid-gold);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}

.rpkr4d41.zl9gy65k {
  background: rgba(34, 211, 238, 0.1);
  border-color: var(--neon-cyan);
}

.rpkr4d41 h4 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.rpkr4d41.zl9gy65k h4 {
  color: var(--neon-cyan);
}

.rpkr4d41.lv5oa3z7 h4 {
  color: var(--liquid-gold);
}

.rpkr4d41 p {
  font-size: 0.9rem;
  color: var(--gray-light);
}

.a7an8hol {
  list-style: none;
}

.a7an8hol li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
}

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

.qzvzcx9o {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--liquid-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.l7wv9xtv {
  color: var(--white);
  font-size: 1rem;
}

/* Timeline Section */
.noc9g9eg {
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.05), transparent);
}

.o1w94hm9 {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.o1w94hm9::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--neon-cyan), var(--liquid-gold));
  border-radius: 2px;
}

.myhi8k0i {
  display: flex;
  justify-content: flex-end;
  padding-right: 60px;
  position: relative;
  margin-bottom: 60px;
}

.myhi8k0i:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 60px;
}

.r4tikzus {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: var(--midnight-blue);
  border: 3px solid var(--neon-cyan);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.6);
}

.myhi8k0i:nth-child(even) .r4tikzus {
  border-color: var(--liquid-gold);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.ojxhlbql {
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 20px;
  padding: 30px;
  max-width: 350px;
  transition: all 0.3s ease;
}

.myhi8k0i:nth-child(even) .ojxhlbql {
  border-color: rgba(251, 191, 36, 0.2);
  background: rgba(251, 191, 36, 0.05);
}

.ojxhlbql:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.2);
}

.jtgp6pp2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 10px;
}

.myhi8k0i:nth-child(even) .jtgp6pp2 {
  color: var(--liquid-gold);
}

.ojxhlbql h4 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.ojxhlbql p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer */
footer {
  background: var(--midnight-light);
  border-top: 1px solid rgba(34, 211, 238, 0.2);
  padding: 60px 0 30px;
}

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

.l5db9acg .mrch7wpu {
  margin-bottom: 20px;
  display: inline-block;
}

.l5db9acg p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.r63lqy66 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: var(--gray-light);
}

.go3f7o4u {
  font-size: 1.5rem;
  color: var(--neon-cyan);
}

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

.w39eqi4z a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.w39eqi4z a:hover {
  color: var(--neon-cyan);
}

.lrx9kjda {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(34, 211, 238, 0.1);
  color: var(--gray-light);
  font-size: 0.85rem;
}

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

.yebzgiej.active {
  opacity: 1;
  visibility: visible;
}

.va2k83wt {
  background: var(--midnight-light);
  border: 1px solid var(--neon-cyan);
  border-radius: 30px;
  padding: 50px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 30px 60px rgba(34, 211, 238, 0.3);
}

.yebzgiej.active .va2k83wt {
  transform: scale(1);
}

.i13wapku {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  color: var(--gray-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.i13wapku:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  transform: rotate(90deg);
}

.va2k83wt h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--liquid-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.vpafljoo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vpafljoo label {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}

.vpafljoo input {
  padding: 15px 20px;
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 15px;
  color: var(--white);
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.vpafljoo input:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.vpafljoo input::placeholder {
  color: var(--gray-light);
}

.zudmezog {
  padding: 16px 30px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--liquid-gold));
  border: none;
  color: var(--midnight-blue);
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.zudmezog:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(34, 211, 238, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
  .q7uewxiw,
  .et7yaozv,
  .bo06qgam {
    grid-template-columns: 1fr;
  }

  .shpvr5yk h1 {
    font-size: 2.5rem;
  }

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

  .o1w94hm9::before {
    left: 20px;
  }

  .myhi8k0i,
  .myhi8k0i:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .r4tikzus,
  .myhi8k0i:nth-child(even) .r4tikzus {
    left: 20px;
  }

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

@media (max-width: 480px) {
  .shpvr5yk h1 {
    font-size: 2rem;
  }

  .gpy6peq4 h2 {
    font-size: 2rem;
  }

  .va2k83wt {
    padding: 30px 20px;
  }
}

/* Legal Pages Styles */
.rkm7f9mo {
  min-height: 100vh;
  padding: 120px 0 60px;
}

.cevc05kg {
  max-width: 800px;
  margin: 0 auto;
}

.cevc05kg h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--liquid-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cevc05kg h2 {
  font-size: 1.5rem;
  color: var(--neon-cyan);
  margin: 30px 0 15px;
}

.cevc05kg p,
.cevc05kg li {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.cevc05kg ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.k3lw50l4 {
  display: inline-block;
  margin-top: 40px;
  color: var(--neon-cyan);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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