
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@400;600;700&display=swap');

:root{
  --teal:#0e6e6e;
  --teal-900:#0a5555;
  --panel-bg:#ffffff;
  --gold:#e5c662;
  --gold-700:#b9922d;
  --text:#0f1b1b;
  --muted:#ccdfdf;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Noto Sans Thai', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color:#f8fbfb;
  background: var(--teal);
}

.container{max-width:980px;margin:0 auto;padding:16px 14px 28px}

.header{text-align:center;margin:6px 0 12px}
.logo-wrap{width:120px;height:120px;margin:0 auto 6px}
.logo-wrap img{width:100%;height:100%;object-fit:contain}
.headline{font-size:1.7rem;font-weight:800;color:#ffe9a6;letter-spacing:.5px}
.subhead{font-size:1.05rem;font-weight:600;color:#ffefbf;margin-top:2px}
.title{font-size:1.2rem;font-weight:700;margin-top:6px;color:#ffffff}
.date{font-size:.95rem;color:#d6ecec;margin-top:4px}

.section-title{
  width:max-content;margin:0 auto 12px;
  padding:6px 14px;border-radius:14px;
  background:linear-gradient(180deg,#fffdf0,#fff1b8);
  color:#6b560a;border:1.5px solid var(--gold);font-weight:700;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
}

.panel{
  border:2px solid var(--gold);
  border-radius:18px;
  padding:12px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  margin:16px 0;
}

.card{
  background: var(--panel-bg);
  border:1.5px solid var(--gold);
  border-radius:16px;
  padding:14px 14px 16px;
  color: var(--text);
}

.card h2{margin:0 0 8px 0;font-size:1.05rem;color:var(--teal-900)}

.btn{
  appearance:none;border:0;cursor:pointer;width:100%;
  padding:10px 14px;border-radius:12px;font-weight:800;
  background:#ffefbf;border:1.5px solid var(--gold);color:#5a4a10;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
}
.btn:active{transform:translateY(1px)}

.results{margin-top:12px;display:flex;flex-direction:column;gap:10px}
.box{
  background:#fff;border:1.5px solid #e2e8e8;border-radius:12px;padding:10px 14px;
  text-align:center;min-height:44px;display:flex;align-items:center;justify-content:center;
  font-weight:800;font-size:1.35rem;color:#163434;box-shadow:inset 0 0 0 3px #f5fbfb;
}
.big{font-size:1.7rem;border-color:#d9efef}
.badge{
  margin-top:12px;width:84px;height:84px;border-radius:50%;border:2px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  background: #fff;color:#1a3535;
  font-weight:900;font-size:1.5rem;margin-left:auto;margin-right:auto;
}

.limit{margin-top:8px;text-align:center;color:#a33;font-size:.95rem}
.note{text-align:center;font-size:.95rem;color:#d6ecec;margin-top:10px}

.disclaimer{
  margin-top:22px;background:rgba(255,255,255,.08);border-left:4px solid var(--gold);
  padding:12px;border-radius:12px;color:#f3faf9;font-size:.95rem;
}
