@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;600;700&family=IBM+Plex+Sans+Thai:wght@400;500;600;700&family=Outfit:wght@400;600;800&family=Inter:wght@400;600;800;900&display=swap');

:root {
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface-2: #eef2f7;
  --ink: #16202e;
  --muted: #687386;
  --line: #dbe1ea;
  --teal: #16b9a5;
  --teal-2: #dff9f5;
  --amber: #f3a51f;
  --red: #e24a55;
  --green: #159867;
  --shadow: 0 18px 45px rgba(30, 45, 70, 0.09);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
}

body.is-overlay {
  background: transparent;
}

button, input, textarea, select {
  font: inherit;
}

button {
  border: 0;
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 720;
}

button.secondary { background: var(--surface-2); color: var(--ink); }
button.good { background: var(--green); }
button.warn { background: var(--amber); color: #1c1403; }
button.bad { background: var(--red); }
button.ghost { background: transparent; color: var(--muted); border: 1px solid var(--line); }
button:disabled { opacity: .45; cursor: not-allowed; }

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}

.sidebar {
  background: #121a25;
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  font-size: 18px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), #4f7cff);
  color: #fff;
}

.nav {
  display: grid;
  gap: 8px;
}

.nav a {
  color: #cbd4e1;
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.nav a.active, .nav a:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.side-note {
  margin-top: auto;
  color: #9aa8bb;
  line-height: 1.5;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
}

.main {
  padding: 24px;
  display: grid;
  gap: 18px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

h1, h2, h3, p { margin: 0; }
h1 { font-size: 28px; line-height: 1.1; letter-spacing: 0; }
h2 { font-size: 18px; line-height: 1.2; }
h3 { font-size: 15px; line-height: 1.2; }
p, label, .muted { color: var(--muted); line-height: 1.45; }

.grid {
  display: grid;
  gap: 18px;
}

.dashboard-grid {
  grid-template-columns: minmax(320px, 420px) minmax(420px, 1fr) minmax(300px, 380px);
  align-items: start;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-head {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-body {
  padding: 16px;
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

textarea { min-height: 92px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-2); }

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.amount-input {
  font-size: 22px;
  font-weight: 850;
}

.amount-chips {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.amount-chip {
  min-height: 42px;
  background: var(--surface-2);
  color: var(--ink);
  padding: 8px 10px;
}

.amount-chip.active {
  background: var(--ink);
  color: #fff;
}

.consent-box {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

.consent-box input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.tabs {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.tab {
  flex: 1;
  background: #fff;
  color: var(--muted);
  border-radius: 0;
  border-right: 1px solid var(--line);
}

.tab:last-child { border-right: 0; }
.tab.active { background: var(--ink); color: #fff; }

.qr-box {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px dashed #bfc9d8;
  border-radius: 8px;
  background: #fbfcfe;
  overflow: hidden;
  padding: 18px;
  text-align: center;
}

.qr-box img { max-width: 100%; max-height: 240px; }
.qr-placeholder { color: var(--muted); line-height: 1.5; }

.qr-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-file {
  display: grid;
  gap: 10px;
}

.file-cta {
  display: grid;
  place-items: center;
  min-height: 64px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.file-cta input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.slip-preview {
  max-width: 100%;
  max-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.qr-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: #fff;
  padding: 22px;
}

.qr-fullscreen-inner {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.qr-fullscreen img {
  width: min(86vw, 420px);
  height: min(86vw, 420px);
  object-fit: contain;
}

.donation-list {
  display: grid;
  gap: 10px;
}

.donation-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  display: grid;
  gap: 10px;
  background: #fff;
}

.donation-card.low { border-left: 5px solid var(--green); }
.donation-card.medium { border-left: 5px solid var(--amber); }
.donation-card.high { border-left: 5px solid var(--red); }

.donation-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.amount { font-size: 22px; font-weight: 900; color: var(--ink); }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 850;
}
.pill.low { background: #e2f8ef; color: var(--green); }
.pill.medium { background: #fff0ce; color: #9b6500; }
.pill.high { background: #ffe1e4; color: var(--red); }
.pill.neutral { background: var(--surface-2); color: var(--muted); }

.checks {
  display: grid;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.stat strong { display: block; font-size: 22px; }
.stat span { color: var(--muted); font-size: 12px; font-weight: 700; }

.history-table-wrap {
  overflow-x: auto;
}

.history-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.history-table th,
.history-table td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.history-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: #fbfcfe;
}

code {
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 12px;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.overlay-page {
  min-height: 100vh;
  background: transparent;
  display: grid;
  place-items: center;
  padding: 40px;
  overflow: hidden;
}

.tts-debug {
  position: fixed;
  left: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 6px;
  background: rgba(10, 16, 24, .72);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 700;
  z-index: 20;
}

.alert-card {
  width: min(680px, 92vw);
  background: rgba(13, 19, 29, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 35px 85px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.15);
  padding: 38px 42px;
  transform: translateY(30px) scale(.96);
  opacity: 0;
  pointer-events: none;
}

.alert-card.show {
  animation: alertIn .55s ease forwards, alertOut .45s ease 8s forwards;
}

.alert-kicker {
  color: #80fff1;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.alert-name {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 900;
  margin-top: 10px;
}

.alert-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  font-size: 24px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

.alert-message {
  margin-top: 20px;
  color: #f8fafc;
  font-size: 26px;
  line-height: 1.45;
  font-weight: 500;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--teal);
}

.alert-card.scale-up.show {
  animation: alertScaleIn .55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards, alertOut .45s ease 8s forwards;
}

.alert-card.slide-up.show {
  animation: alertSlideIn .55s cubic-bezier(0.16, 1, 0.3, 1) forwards, alertOut .45s ease 8s forwards;
}

.alert-card.fade-in.show {
  animation: alertFadeIn .55s ease forwards, alertOut .45s ease 8s forwards;
}

@keyframes alertScaleIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes alertSlideIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes alertFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes alertIn {
  from { transform: translateY(30px) scale(.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes alertOut {
  to { transform: translateY(-18px) scale(.98); opacity: 0; }
}

.hidden { display: none !important; }

@media (max-width: 1180px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .dashboard-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .main { padding: 14px; }
  .topbar { align-items: flex-start; }
  .two { grid-template-columns: 1fr; }
  .amount-chips { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .amount-input { font-size: 24px; }
}

@media (max-width: 640px) {
  .main { padding: 14px; }
  .topbar { align-items: flex-start; flex-direction: column; }
  .two, .stat-row { grid-template-columns: 1fr; }
  .qr-actions { grid-template-columns: 1fr; }
  .sidebar { padding: 18px; }
}

/* Alert Designer Workspace */
.designer-layout {
  display: grid;
  grid-template-columns: minmax(420px, 520px) 1fr;
  gap: 24px;
  align-items: start;
}

.preview-sticky-wrap {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
}

.preview-obs-screen {
  position: relative;
  min-height: 480px;
  background: #0d1117;
  background-image: linear-gradient(45deg, #161b22 25%, transparent 25%), 
                    linear-gradient(-45deg, #161b22 25%, transparent 25%), 
                    linear-gradient(45deg, transparent 75%, #161b22 75%), 
                    linear-gradient(-45deg, transparent 75%, #161b22 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
}

.preview-obs-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(226, 74, 85, 0.2);
  color: var(--red);
  border: 1px solid var(--red);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

/* Custom Base64 Uploader Styling */
.file-cta.upload-accent {
  background: linear-gradient(135deg, var(--teal), #3b82f6);
}

.form-row input[type="color"] {
  padding: 0;
  height: 40px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

@media (max-width: 1024px) {
  .designer-layout { grid-template-columns: 1fr; }
  .preview-sticky-wrap { position: static; }
}

/* Modern Checkbox styling */
input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 4px !important;
  border: 1px solid var(--line) !important;
  accent-color: #0f766e !important;
  cursor: pointer !important;
  vertical-align: middle !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
  transition: all 0.1s ease !important;
}
input[type="checkbox"]:hover {
  transform: scale(1.08) !important;
}

/* Vtuber QR Mask & Blur Styling */
.qr-masked-container {
  position: relative;
  width: 100%;
  max-width: 320px;
  min-height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f8fafc;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.qr-masked-container img {
  filter: blur(16px);
  opacity: 0.28;
  transition: filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  user-select: none;
  pointer-events: none;
}

.qr-masked-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 10;
  padding: 20px;
  text-align: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
}

.qr-masked-container.revealed img {
  filter: blur(0);
  opacity: 1;
  pointer-events: auto;
}

.qr-masked-container.revealed .qr-masked-overlay {
  opacity: 0;
  visibility: hidden;
}

/* ==========================================
   Tökkajai Premium Landing Page (Home) Style
   ========================================== */
.landing-page {
  min-height: 100vh;
  background: radial-gradient(circle at 80% 20%, #112936 0%, #080d13 100%);
  color: #f1f5f9;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.landing-header {
  backdrop-filter: blur(12px);
  background: rgba(8, 13, 19, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
  position: sticky;
  top: 0;
  z-index: 40;
}

.landing-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  font-family: 'Chakra Petch', sans-serif;
  text-decoration: none;
}

.landing-brand img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}

.landing-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-tag {
  align-self: flex-start;
  background: rgba(22, 185, 165, 0.15);
  color: #14b8a6;
  border: 1px solid rgba(20, 184, 166, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(38px, 5vw, 62px);
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff 40%, #14b8a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.hero-desc {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, #14b8a6, #3b82f6);
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(20, 184, 166, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 800;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-mascot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-image-wrapper {
  position: relative;
  width: min(100%, 420px);
}

.mascot-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 50px rgba(20, 184, 166, 0.25));
}

.mascot-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.18) 0%, transparent 70%);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.landing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin-bottom: 40px;
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(20, 184, 166, 0.15);
  color: #14b8a6;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.feature-card p {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* Glassmorphic Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 13, 19, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  width: min(100%, 480px);
  padding: 36px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.modal-overlay.show .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #94a3b8;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.modal-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.modal-header p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
}

.oauth-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-oauth {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-discord {
  background: #5865F2;
  color: #fff;
}

.btn-discord:hover {
  background: #4752C4;
  box-shadow: 0 0 15px rgba(88, 101, 242, 0.4);
}

.btn-google {
  background: #fff;
  color: #1f2937;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-google:hover {
  background: #f3f4f6;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-developer {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px dashed rgba(20, 184, 166, 0.4);
  color: #14b8a6;
}

.btn-developer:hover {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(59, 130, 246, 0.2));
  border-color: #14b8a6;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #4b5563;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.divider:not(:empty)::before {
  margin-right: .5em;
}

.divider:not(:empty)::after {
  margin-left: .5em;
}

.token-login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.token-login-form input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
}

.token-login-form input::placeholder {
  color: #4b5563;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@media (max-width: 960px) {
  .landing-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    gap: 32px;
  }
  .hero-tag {
    align-self: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-mascot {
    order: -1;
  }
}
