
:root {
  --ink: #f8efe4;
  --muted: #bcae9c;
  --orange: #f08b1d;
  --orange-bright: #ffad45;
  --panel: rgba(18, 15, 13, 0.88);
}

* { box-sizing: border-box; }

html { min-height: 100%; background: #080706; }

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -10%, rgba(197, 83, 9, 0.34), transparent 35rem),
    linear-gradient(180deg, #0d0907 0%, #070707 100%);
  font-family: Tahoma, "Noto Sans Thai", Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }

.page-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 42px 18px 24px;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.ambient-one {
  top: 18%; right: -180px; width: 360px; height: 360px;
  background: rgba(239, 92, 9, 0.22);
}

.ambient-two {
  bottom: -120px; left: -180px; width: 360px; height: 360px;
  background: rgba(113, 49, 12, 0.2);
}

.link-card {
  width: min(100%, 460px);
  padding: 30px 22px 24px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 36%),
    var(--panel);
  border: 1px solid rgba(255, 172, 70, 0.22);
  border-radius: 32px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.brand-emblem {
  display: block;
  width: 96px; height: 96px;
  margin: 0 auto 16px;
  overflow: hidden;
  border-radius: 23px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

.brand-emblem img {
  display: block;
  width: 100%; height: 100%;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--orange-bright);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 10vw, 52px);
  font-weight: 700; line-height: 1.18;
  letter-spacing: -0.04em;
}

.intro {
  margin: 10px 0 0;
  color: #d8cfc4;
  font-size: 15px; line-height: 1.7;
}

.quote {
  margin: 20px 0 22px;
  padding: 13px 12px;
  color: #f3b55e;
  background: rgba(232, 112, 15, 0.075);
  border-top: 1px solid rgba(240, 139, 29, 0.18);
  border-bottom: 1px solid rgba(240, 139, 29, 0.18);
  font-size: 16px; font-weight: 700;
}

.quote span { color: rgba(243, 181, 94, 0.54); }

.social-list { display: grid; gap: 11px; }

.social-link {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  align-items: center;
  min-height: 68px;
  padding: 10px 13px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link:hover, .social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 174, 69, 0.52);
  background: rgba(255, 255, 255, 0.085);
  outline: none;
}

.social-link:active { transform: scale(0.985); }

.social-mark {
  display: grid;
  width: 40px; height: 40px;
  place-items: center;
  border-radius: 13px;
  color: white;
  font-size: 21px; font-weight: 800;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.facebook .social-mark { background: #1877f2; font-family: Arial, sans-serif; }
.instagram .social-mark { background: linear-gradient(135deg, #7b3be2, #e1306c 52%, #f9a23c); }
.youtube .social-mark { background: #ff0033; font-size: 17px; }
.tiktok .social-mark {
  color: white; background: #050505;
  text-shadow: -2px 0 #25f4ee, 2px 0 #fe2c55;
  border: 1px solid rgba(255, 255, 255, 0.17);
}
.x-social .social-mark {
  color: white;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: Arial, sans-serif;
  font-size: 19px;
}

.social-copy {
  display: flex; min-width: 0;
  flex-direction: column;
  padding-left: 11px;
}

.social-copy strong { font-size: 15px; font-weight: 700; }
.social-copy small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arrow { color: rgba(255, 255, 255, 0.5); font-size: 20px; text-align: center; }
.follow-note { margin: 20px 0 0; color: #a99d90; font-size: 12px; }
footer { margin-top: 20px; color: rgba(230, 215, 198, 0.46); font-size: 11px; }

@media (max-width: 390px) {
  .page-shell { padding: 24px 12px 18px; }
  .link-card { padding: 24px 15px 20px; border-radius: 26px; }
  .brand-emblem { width: 88px; height: 88px; margin-bottom: 12px; }
  .quote { margin: 16px 0 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .social-link { transition: none; }
}
