:root {
  --bg: #9c5123;
  --bg-alt: #80411f;
  --card: #5b361c;
  --text: #fff3e6;
  --muted: #f1d0aa;
  --primary: #f0c36a;
  --primary-500: #ffd27a;
  --accent: #a66b3d;
  --border: #7a4b2f;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(240,195,106,.18), transparent),
              radial-gradient(1200px 600px at 80% 110%, rgba(166,107,61,.18), transparent),
              var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  line-height: 1.65;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(156, 81, 35, .6);
  border-bottom: 1px solid var(--border);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .5px;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 18px;
}

.nav a:hover {
  color: var(--text);
}

.hero {
  padding: 72px 0 40px;
}

.hero-logo {
  width: 140px;
  height: auto;
  display: block;
  margin: 0 0 12px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.25));
}

.headline {
  margin: 0 0 8px;
  font-size: 56px;
  letter-spacing: 1px;
}

.tagline {
  margin: 0 0 28px;
  color: var(--muted);
}

.ca-card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.ca-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.label {
  font-weight: 600;
}

code#ca-address {
  display: block;
  padding: 10px 12px;
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  border-radius: 10px;
  word-break: break-all;
}

.timer {
  display: grid;
  grid-auto-flow: row;
  gap: 6px;
  margin: 22px 0 8px;
}

.timer-label {
  color: var(--muted);
}

.countdown {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 1px;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin: 24px 0 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  border-color: var(--primary-500);
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-500));
  border: none;
}

.btn.ghost {
  background: transparent;
}

.mini {
  font-size: 12px;
}

.muted {
  color: var(--muted);
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 {
  margin-top: 0;
}

.list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.list li {
  margin-bottom: 8px;
}

.site-footer {
  padding: 28px 0 48px;
}

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

@media (max-width: 720px) {
  .headline { font-size: 40px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .nav { display: none; }
}



.brand-logo{height:36px;width:auto;display:block}
/* --- UX polish (anchor, spacing, shadows) --- */
html { scroll-behavior: smooth; }
.section { scroll-margin-top: 84px; }
.site-header { backdrop-filter: saturate(1.1) blur(8px); box-shadow: 0 1px 0 rgba(0,0,0,.14); }
.hero { padding: 88px 0 48px; }
.headline { letter-spacing: .6px; text-shadow: 0 1px 0 rgba(0,0,0,.10); }
.ca-card { box-shadow: 0 8px 24px rgba(0,0,0,.16); }
.btn.primary { box-shadow: 0 8px 16px rgba(240,195,106,.25); transition: transform .15s ease, box-shadow .15s ease; }
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(240,195,106,.28); }
.list li { margin-bottom: 10px; line-height: 1.7; }
.section { padding: 56px 0; }
.section + .section { border-top: 1px solid rgba(0,0,0,.08); }
.h2-badge {
  position: relative;
  padding-left: 46px;
}
.h2-badge::before {
  content: attr(data-idx);
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 28px; min-width: 28px; padding: 0 8px;
  border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--primary-500), var(--primary));
  color: #3b2a15; font-weight: 800; font-size: 16px; box-shadow: 0 4px 10px rgba(0,0,0,.18);
}
/* === Grey Cartoon Theme Refresh === */
:root {
  --bg: #f3f4f6;        /* light grey */
  --bg-alt: #ffffff;    /* white cards */
  --card: #ffffff;
  --text: #111827;      /* near-black */
  --muted: #6b7280;     /* grey-500 */
  --primary: #111827;   /* dark text as primary */
  --primary-500: #374151;
  --accent: #9ca3af;    /* grey-400 */
  --border: #e5e7eb;    /* grey-200 */
}
html, body { background: var(--bg); color: var(--text); }
.site-header { background: rgba(255,255,255,.75); border-bottom: 1px solid var(--border); }
.brand, .nav a { color: var(--text); }
.hero { padding: 72px 0 40px; }
.headline { color: var(--text); text-shadow: none; }
.tagline { color: var(--muted); }
.ca-card, .section.alt { background: var(--card); border: 1px solid var(--border); box-shadow: 0 10px 24px rgba(17,24,39,.06); }
code#ca-address { background: #f9fafb; border-color: var(--border); box-shadow: none; }
.btn { border: 1px solid var(--border); background: #fff; color: var(--text); }
.btn.primary { background: var(--text); color: #fff; border: none; box-shadow: 0 10px 20px rgba(17,24,39,.10); }
.btn.primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(17,24,39,.14); }
.section.alt { background: #fff; }
.h2-badge::before { background: #e5e7eb; color: #111827; box-shadow: none; }
.countdown { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; letter-spacing: 2px; }
/* separators */
.section + .section { border-top: none; }
/* --- Grey theme polish v2 --- */
.container { max-width: 960px; }
.ca-card, .section.alt { border-radius: 18px; }
.btn { border-radius: 999px; padding: 0 18px; height: 42px; }
.btn.ghost { border-color: var(--accent); }
.nav a { margin-left: 20px; color: #374151; }
.nav a:hover { color: var(--text); }
code#ca-address { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation
.hero-inner { position: relative; }
