:root {
  --bg: #fff6ea;
  --surface: #fffdf9;
  --surface-soft: rgba(255, 253, 249, 0.72);
  --ink: #32243d;
  --muted: #766f7d;
  --line: rgba(50, 36, 61, 0.18);
  --coral: #ff755f;
  --pink: #f3a8cd;
  --lilac: #bca8ff;
  --lemon: #ffe073;
  --mint: #9de8c8;
  --sky: #93ddff;
  --purple: #6f52bb;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", monospace;
  --max: 1240px;
  --shadow: 8px 9px 0 var(--ink);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="night"] {
  --bg: #34234e;
  --surface: #4d376b;
  --surface-soft: rgba(77, 55, 107, 0.75);
  --ink: #fff8ef;
  --muted: #d0c4dc;
  --line: rgba(255, 248, 239, 0.24);
  --coral: #ff9075;
  --pink: #f4a6cf;
  --lilac: #a798f0;
  --lemon: #ffe178;
  --mint: #a0e9c9;
  --sky: #8fddff;
  --purple: #d2c3ff;
  --shadow: 8px 9px 0 #1e142d;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { min-width: 320px; margin: 0; overflow-x: hidden; color: var(--ink); background: var(--bg); font-family: var(--sans); font-size: 16px; transition: color 500ms var(--ease), background-color 500ms var(--ease); }
body::before { position: fixed; inset: 0; z-index: -5; content: ""; pointer-events: none; background: radial-gradient(circle at 9% 15%, rgba(255, 117, 95, 0.21), transparent 22rem), radial-gradient(circle at 89% 16%, rgba(188, 168, 255, 0.31), transparent 25rem), radial-gradient(circle at 68% 90%, rgba(157, 232, 200, 0.19), transparent 24rem); }
html[data-theme="night"] body::before { background: radial-gradient(circle at 9% 15%, rgba(255, 117, 95, 0.15), transparent 24rem), radial-gradient(circle at 89% 16%, rgba(188, 168, 255, 0.19), transparent 25rem), radial-gradient(circle at 68% 90%, rgba(157, 232, 200, 0.1), transparent 24rem); }
body::after { position: fixed; inset: 0; z-index: -4; content: ""; opacity: 0.33; pointer-events: none; background-image: radial-gradient(var(--coral) 1.2px, transparent 1.2px), radial-gradient(var(--lilac) 1px, transparent 1px); background-position: 0 0, 19px 23px; background-size: 47px 47px, 61px 61px; }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }

.grain { position: fixed; inset: 0; z-index: 20; opacity: 0.035; pointer-events: none; mix-blend-mode: multiply; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); }
html[data-theme="night"] .grain { opacity: 0.06; mix-blend-mode: screen; }
.ambient { position: fixed; z-index: -1; border-radius: 50%; pointer-events: none; }
.ambient-one { width: 230px; height: 230px; top: 45%; right: -90px; background: var(--lemon); opacity: 0.28; animation: drift 13s ease-in-out infinite; }
.ambient-two { width: 170px; height: 170px; bottom: 8%; left: -70px; background: var(--pink); opacity: 0.26; animation: drift 17s ease-in-out infinite reverse; }

.site-header { position: sticky; top: 0; z-index: 5; display: flex; align-items: center; justify-content: space-between; width: min(var(--max), calc(100% - 56px)); min-height: 86px; margin: auto; background: color-mix(in srgb, var(--bg) 75%, transparent); backdrop-filter: blur(16px); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 800; letter-spacing: -0.05em; }
.brand-name { font-size: 20px; }
.brand-name span { color: var(--coral); }
.brand-glyph { display: grid; grid-template-columns: repeat(3, 5px); align-items: end; gap: 3px; width: 21px; height: 21px; }
.brand-glyph span { display: block; width: 5px; border-radius: 8px; background: var(--ink); transform: rotate(45deg); animation: glyph-breathe 2.8s ease-in-out infinite; }
.brand-glyph span:nth-child(1) { height: 9px; margin-bottom: 4px; background: var(--coral); animation-delay: -0.4s; }
.brand-glyph span:nth-child(2) { height: 17px; animation-delay: -1s; }
.brand-glyph span:nth-child(3) { height: 8px; margin-bottom: 5px; background: var(--lilac); animation-delay: -1.7s; }
.site-nav { display: flex; align-items: center; gap: 34px; margin-left: 100px; color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; }
.site-nav a { transition: color 250ms ease, transform 250ms var(--ease); }
.site-nav a span { color: var(--coral); display: inline-block; transition: transform 250ms var(--ease); }
.site-nav a:hover { color: var(--ink); transform: translateY(-2px); }
.site-nav a:hover span { transform: translate(3px, -3px); }
.creator-entry, .theme-toggle { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 14px; border: 2px solid var(--ink); border-radius: 999px; color: var(--ink); background: var(--surface-soft); font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; transition: transform 250ms var(--ease), background 250ms ease, color 250ms ease; }
.creator-entry:hover, .theme-toggle:hover, .creator-entry.active { color: var(--ink); background: var(--lemon); transform: translateY(-3px) rotate(-1deg); }
.creator-entry-mark { color: var(--coral); font-size: 15px; }
.theme-toggle { border-color: var(--ink); background: var(--surface); }
.theme-icon { color: var(--coral); font-size: 18px; line-height: 0.8; }

.section-shell { width: min(var(--max), calc(100% - 56px)); margin-inline: auto; }
.hero-section { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr); align-items: center; gap: 7vw; min-height: calc(100svh - 86px); padding: 40px 0 110px; }
.hero-copy { max-width: 560px; padding-left: clamp(0px, 3vw, 44px); }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 19px; color: var(--purple); font-family: var(--mono); font-size: 11px; letter-spacing: 0.11em; line-height: 1.5; text-transform: uppercase; }
.eyebrow-dot { display: inline-block; width: 8px; height: 8px; border: 2px solid var(--coral); border-radius: 50%; background: var(--lemon); box-shadow: 3px 3px 0 var(--ink); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.067em; line-height: 0.94; }
h1 { max-width: 650px; margin-bottom: 28px; font-size: clamp(67px, 8vw, 118px); }
h2 { font-size: clamp(49px, 5.2vw, 79px); }
h1 em, h2 em { color: var(--coral); font-style: italic; font-weight: 400; }
.hero-lede { max-width: 470px; margin-bottom: 33px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 25px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 17px; min-height: 57px; padding: 0 23px; border: 2px solid var(--ink); border-radius: 16px 19px 17px 22px; font-size: 14px; font-weight: 800; letter-spacing: -0.02em; transition: transform 300ms var(--ease), box-shadow 300ms var(--ease), background-color 300ms ease, color 300ms ease; }
.button:hover { box-shadow: 5px 6px 0 var(--ink); transform: translate(-3px, -4px) rotate(-1deg); }
.button-primary { color: var(--ink); background: var(--coral); }
.button-primary:hover { background: var(--lemon); }
.button-dark { color: #fffaf4; background: var(--ink); }
html[data-theme="night"] .button-dark { color: var(--ink); background: var(--lemon); }
.button-quiet { min-height: 43px; padding: 0 17px; border: 2px solid var(--ink); border-radius: 999px; color: var(--ink); background: var(--surface); font-family: var(--mono); font-size: 12px; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; }
.button-quiet:hover { box-shadow: 4px 4px 0 var(--ink); background: var(--mint); }
.button-arrow { font-size: 18px; font-weight: 400; line-height: 0; }
.text-link { position: relative; padding-bottom: 7px; color: var(--ink); font-size: 13px; font-weight: 800; }
.text-link::after { position: absolute; right: 21px; bottom: 0; left: 0; height: 2px; content: ""; background: var(--ink); transition: right 300ms var(--ease); }
.text-link span { margin-left: 7px; color: var(--coral); font-size: 19px; font-weight: 400; }
.text-link:hover::after { right: 0; }
.hero-note { margin: 37px 0 0; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; }
.tiny-spark { margin-right: 4px; color: var(--coral); font-size: 14px; }

.hero-sky { position: relative; min-height: 555px; display: grid; place-items: center; isolation: isolate; border: 2px solid var(--ink); border-radius: 44% 56% 48% 52% / 39% 43% 57% 61%; background: linear-gradient(145deg, var(--lilac) 0%, var(--pink) 53%, var(--sky) 100%); box-shadow: var(--shadow); transform: rotate(1deg); transition: transform 500ms var(--ease); }
.hero-sky:hover { transform: rotate(-1deg) translateY(-6px); }
html[data-theme="night"] .hero-sky { background: linear-gradient(145deg, #7063ba 0%, #9f608a 54%, #4c9ab5 100%); }
.hero-sky::before { position: absolute; z-index: -3; width: 68%; aspect-ratio: 1; border: 2px solid var(--ink); border-radius: 50%; content: ""; background: rgba(255,255,255,0.16); animation: breathe 9s ease-in-out infinite; }
.hero-sky::after { position: absolute; z-index: -2; right: 11%; bottom: 9%; width: 92px; height: 92px; border: 2px solid var(--ink); border-radius: 39% 61% 52% 48%; content: ""; background: var(--lemon); transform: rotate(20deg); animation: bob 6s ease-in-out infinite; }
.sky-stars { position: absolute; color: var(--ink); font-family: var(--serif); font-size: 19px; letter-spacing: 0.2em; text-shadow: 2px 2px 0 rgba(255,255,255,0.5); animation: twinkle 4s ease-in-out infinite; }
.stars-one { top: 12%; right: 14%; }
.stars-two { bottom: 15%; left: 14%; animation-delay: -2s; font-size: 14px; }
.orbit { position: absolute; z-index: -1; border: 2px dashed rgba(50, 36, 61, 0.7); border-radius: 50%; transform: rotate(-28deg); }
.orbit-large { width: 104%; aspect-ratio: 1.73; animation: orbit-spin 28s linear infinite; }
.orbit-small { width: 58%; height: 180px; border-style: solid; transform: rotate(29deg); animation: orbit-spin-reverse 22s linear infinite; }
.moon { position: absolute; top: 9%; left: 10%; width: 68px; aspect-ratio: 1; border: 2px solid var(--ink); border-radius: 50%; background: var(--lemon); box-shadow: 5px 5px 0 var(--ink); animation: bob 7s ease-in-out infinite; }
.moon::after { position: absolute; top: -2px; left: 20px; width: 68px; aspect-ratio: 1; border-radius: 50%; content: ""; background: var(--lilac); }
.moon span { position: absolute; z-index: 1; width: 7px; height: 7px; left: 17px; top: 35px; border-radius: 50%; background: var(--coral); }
.moon span::after { position: absolute; width: 5px; height: 5px; left: 27px; top: -17px; border-radius: 50%; content: ""; background: var(--ink); }
.sky-label, .sky-caption { position: absolute; color: var(--ink); font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.sky-label { top: 19%; right: 8%; padding: 7px 9px; border: 2px solid var(--ink); background: var(--lemon); transform: rotate(6deg); }
.sky-caption { right: 3%; bottom: 8%; transform: rotate(-90deg); transform-origin: right center; }

.timer-panel { width: min(82%, 430px); padding: 27px 29px 24px; border: 2px solid var(--ink); border-radius: 22px 25px 18px 28px; color: var(--ink); background: var(--surface); box-shadow: 8px 9px 0 var(--ink); transform: rotate(-3deg); transition: transform 500ms var(--ease); }
.hero-sky:hover .timer-panel { transform: rotate(0deg) translateY(-8px); }
.timer-topline, .timer-bottomline { display: flex; align-items: center; justify-content: space-between; }
.timer-kicker { color: var(--purple); font-family: var(--mono); font-size: 10px; letter-spacing: 0.11em; text-transform: uppercase; }
.icon-button { width: 31px; height: 31px; padding: 0; border: 2px solid var(--ink); border-radius: 50%; color: var(--ink); background: var(--lemon); font-size: 15px; transition: transform 250ms var(--ease), background 250ms ease; }
.icon-button:hover { background: var(--coral); transform: rotate(45deg); }
.timer-panel h2 { margin: 27px 0 8px; color: var(--ink); font-size: 31px; letter-spacing: -0.06em; line-height: 1; }
.timer-date { margin-bottom: 25px; color: var(--muted); font-family: var(--mono); font-size: 11px; }
.countdown-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 8px; }
.countdown-unit { display: grid; gap: 7px; }
.countdown-unit strong { color: var(--coral); font-family: var(--serif); font-size: clamp(33px, 4vw, 47px); font-weight: 500; letter-spacing: -0.07em; line-height: 0.8; }
.countdown-unit span { color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.countdown-divider { align-self: start; padding-top: 6px; color: var(--purple); font-family: var(--serif); font-size: 23px; }
.timer-progress { height: 7px; margin: 25px 0 14px; overflow: hidden; border: 2px solid var(--ink); border-radius: 999px; background: var(--lemon); }
.timer-progress span { display: block; width: 44%; height: 100%; border-radius: 999px; background: var(--coral); transition: width 700ms ease; }
.timer-bottomline { color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; }
.timer-heart { color: var(--coral); font-size: 21px; }

.list-section { padding: 93px 0 155px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading h2, .detail-copy h2, .gift-copy h2 { margin-bottom: 0; }
.list-meta { display: flex; align-items: center; gap: 23px; padding-bottom: 7px; }
.list-count { color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; }
.list-count b { margin-right: 6px; color: var(--coral); font-size: 19px; font-weight: 500; }
.filter-row { display: flex; align-items: center; gap: 9px; margin: 49px 0 25px; padding-bottom: 14px; border-bottom: 2px solid var(--line); }
.filter-button { padding: 9px 14px; border: 2px solid transparent; border-radius: 999px; color: var(--muted); background: transparent; font-family: var(--mono); font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 250ms var(--ease); }
.filter-button span { margin-left: 4px; color: var(--coral); }
.filter-button:hover, .filter-button.active { border-color: var(--ink); color: var(--ink); background: var(--lemon); transform: rotate(-1deg); }
.filter-button.active { box-shadow: 3px 3px 0 var(--ink); }
.wishlist-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.wish-card { min-width: 0; overflow: hidden; border: 2px solid var(--ink); border-radius: 25px 22px 28px 20px; background: var(--surface); box-shadow: 6px 7px 0 var(--ink); transition: transform 450ms var(--ease), box-shadow 450ms var(--ease); animation: card-in 700ms var(--ease) both; }
.wish-card:nth-child(2n) { border-radius: 21px 28px 20px 25px; transform: rotate(1deg); }
.wish-card:nth-child(3n) { border-radius: 28px 20px 24px 22px; }
.wish-card:hover { z-index: 1; box-shadow: 10px 12px 0 var(--ink); transform: translateY(-9px) rotate(-1deg); }
.wish-card:nth-child(2n):hover { transform: translateY(-9px) rotate(0deg); }
.wish-image-wrap { position: relative; aspect-ratio: 0.86; overflow: hidden; border-bottom: 2px solid var(--ink); background: var(--pink); }
.wish-image-wrap::after { position: absolute; inset: 0; content: ""; pointer-events: none; background: linear-gradient(180deg, transparent 54%, rgba(50, 36, 61, 0.3)); }
.wish-image { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ease), filter 400ms ease; }
.wish-card:hover .wish-image { transform: scale(1.07) rotate(1deg); }
.wish-tag { position: absolute; z-index: 1; top: 13px; left: 13px; padding: 7px 9px; border: 2px solid var(--ink); border-radius: 999px; color: var(--ink); background: var(--lemon); font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.wish-card:nth-child(2n) .wish-tag { background: var(--mint); }
.wish-card:nth-child(3n) .wish-tag { background: var(--pink); }
.wish-status { position: absolute; z-index: 1; right: 13px; bottom: 12px; display: flex; align-items: center; gap: 5px; color: #fff; font-family: var(--mono); font-size: 10px; letter-spacing: 0.07em; text-transform: uppercase; text-shadow: 1px 1px 0 var(--ink); }
.wish-status::before { width: 7px; height: 7px; display: inline-block; border: 1px solid #fff; border-radius: 50%; background: var(--coral); content: ""; }
.wish-card.saved .wish-status::before { background: var(--mint); }
.wish-card.saved { opacity: 0.82; }
.wish-card.saved .wish-image { filter: saturate(0.72); }
.wish-info { padding: 20px 18px 17px; }
.wish-info h3 { min-height: 44px; margin-bottom: 9px; color: var(--ink); font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: -0.055em; line-height: 0.98; }
.wish-info p { min-height: 55px; margin-bottom: 18px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.wish-bottom { display: flex; align-items: end; justify-content: space-between; gap: 9px; padding-top: 14px; border-top: 2px dashed var(--line); }
.wish-price { color: var(--coral); font-family: var(--serif); font-size: 29px; letter-spacing: -0.06em; line-height: 0.8; white-space: nowrap; }
.wish-actions { display: flex; align-items: center; gap: 7px; }
.wish-action { display: inline-flex; align-items: center; justify-content: center; min-width: 34px; height: 34px; padding: 0 9px; border: 2px solid var(--ink); border-radius: 999px; color: var(--ink); background: transparent; font-family: var(--mono); font-size: 10px; transition: background 250ms ease, color 250ms ease, transform 250ms var(--ease); }
.wish-action:hover { background: var(--lemon); transform: translateY(-3px) rotate(-2deg); }
.wish-action.gift { color: var(--ink); background: var(--mint); }
.wish-action.gift:hover { background: var(--coral); }
.wish-action.delete { color: var(--muted); }
.empty-state { padding: 72px 24px; border: 2px dashed var(--ink); border-radius: 22px; background: var(--surface-soft); text-align: center; }
.empty-state[hidden] { display: none; }
.empty-spark { color: var(--coral); font-size: 29px; }
.empty-state h3 { margin: 15px 0 7px; font-family: var(--serif); font-size: 28px; font-weight: 500; }
.empty-state p { margin-bottom: 22px; color: var(--muted); font-size: 14px; }

.detail-section { display: grid; grid-template-columns: minmax(320px, 0.92fr) minmax(0, 0.88fr); align-items: center; gap: clamp(60px, 10vw, 160px); padding: 25px 8vw 175px; }
.detail-image { position: relative; overflow: visible; aspect-ratio: 0.85; max-width: 500px; }
.detail-image::before { position: absolute; z-index: -1; inset: 8% -10% -7% 10%; border: 2px solid var(--ink); border-radius: 43% 57% 51% 49%; content: ""; background: var(--lemon); transform: rotate(-8deg); transition: transform 500ms var(--ease); }
.detail-image:hover::before { transform: rotate(-3deg) translate(7px, -4px); }
.detail-image img { display: block; width: 100%; height: 100%; border: 2px solid var(--ink); border-radius: 34px 28px 39px 26px; object-fit: cover; box-shadow: var(--shadow); filter: saturate(1.05); }
.image-note { position: absolute; right: -38px; bottom: 41px; padding: 13px 16px; border: 2px solid var(--ink); border-radius: 11px 15px 12px 16px; color: var(--ink); background: var(--coral); font-family: var(--serif); font-size: 17px; line-height: 0.92; transform: rotate(5deg); box-shadow: 5px 6px 0 var(--ink); }
.image-note em { color: var(--surface); font-size: 21px; }
.detail-image .orbit-small { width: 200px; height: 80px; right: -86px; top: 7%; border-color: var(--ink); opacity: 0.8; }
.detail-copy { max-width: 500px; }
.detail-copy > p:not(.eyebrow), .gift-copy > p:not(.eyebrow) { margin: 31px 0 34px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.detail-steps { display: grid; gap: 20px; }
.detail-step { display: grid; grid-template-columns: 39px 1fr; gap: 14px; padding-top: 17px; border-top: 2px solid var(--line); }
.detail-step span { color: var(--coral); font-family: var(--mono); font-size: 12px; }
.detail-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.detail-step b { color: var(--ink); font-size: 14px; }

.gift-section { position: relative; min-height: 455px; display: grid; place-items: center; overflow: hidden; margin-bottom: 90px; border: 2px solid var(--ink); border-radius: 37px 28px 41px 31px; background: var(--lemon); box-shadow: var(--shadow); }
html[data-theme="night"] .gift-section { background: var(--coral); }
.gift-section::before, .gift-section::after { position: absolute; border: 2px dashed var(--ink); border-radius: 50%; content: ""; animation: orbit-spin 28s linear infinite; }
.gift-section::before { width: 690px; height: 230px; transform: rotate(26deg); }
.gift-section::after { width: 960px; height: 340px; transform: rotate(-25deg); animation-direction: reverse; }
.gift-copy { position: relative; z-index: 1; max-width: 640px; text-align: center; }
.gift-copy .eyebrow { justify-content: center; color: var(--purple); }
.gift-copy h2 em { color: var(--coral); }
html[data-theme="night"] .gift-copy h2 em { color: var(--ink); }
.gift-copy > p:not(.eyebrow) { max-width: 440px; margin-inline: auto; color: var(--muted); }
.gift-copy .button { margin-top: 4px; }
.gift-starfield { position: absolute; inset: 0; color: var(--ink); font-family: var(--serif); font-size: 27px; }
.gift-starfield span { position: absolute; animation: twinkle 4s ease-in-out infinite; }
.gift-starfield span:nth-child(1) { top: 20%; left: 20%; }
.gift-starfield span:nth-child(2) { top: 31%; right: 19%; animation-delay: -1.2s; }
.gift-starfield span:nth-child(3) { bottom: 19%; left: 27%; animation-delay: -2.3s; }
.gift-starfield span:nth-child(4) { bottom: 24%; right: 26%; animation-delay: -3s; }
.gift-starfield span:nth-child(5) { top: 22%; left: 69%; font-size: 13px; }
.gift-starfield span:nth-child(6) { bottom: 27%; left: 14%; font-size: 16px; animation-delay: -1.8s; }

.site-footer { display: flex; align-items: center; justify-content: space-between; padding: 0 0 40px; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; }
.site-footer .brand-glyph { transform: scale(0.8); transform-origin: left center; }
.site-footer a { color: var(--ink); }

.modal { width: min(600px, calc(100% - 32px)); max-height: calc(100svh - 32px); overflow-y: auto; padding: 0; border: 2px solid var(--ink); border-radius: 27px 31px 25px 30px; color: var(--ink); background: var(--surface); box-shadow: 10px 11px 0 var(--ink); }
.modal::backdrop { background: rgba(50, 36, 61, 0.45); backdrop-filter: blur(7px); }
.modal-content { position: relative; padding: 41px clamp(24px, 5vw, 54px) 46px; }
.modal-close { position: absolute; top: 21px; right: 24px; width: 33px; height: 33px; border: 2px solid var(--ink); border-radius: 50%; color: var(--ink); background: var(--lemon); font-size: 22px; line-height: 1; transition: transform 250ms var(--ease), background 250ms ease; }
.modal-close:hover { background: var(--coral); transform: rotate(90deg); }
.modal h2 { margin: 0 0 14px; font-size: 49px; }
.modal-intro { max-width: 450px; margin-bottom: 27px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.field-label { display: block; margin: 16px 0 7px; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.field-label span { opacity: 0.6; text-transform: none; }
input, textarea, select { width: 100%; padding: 14px 15px; border: 2px solid var(--ink); border-radius: 12px; outline: none; color: var(--ink); background: var(--surface-soft); font-size: 14px; transition: border-color 250ms ease, box-shadow 250ms ease, background 250ms ease; }
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--coral); box-shadow: 4px 4px 0 var(--lemon); }
.input-with-action { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.mini-button { align-self: stretch; padding: 0 15px; border: 2px solid var(--ink); border-radius: 12px; color: var(--ink); background: var(--mint); font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; transition: transform 250ms var(--ease), background 250ms ease; }
.mini-button:hover { background: var(--lemon); transform: translateY(-2px); }
.import-status { min-height: 15px; margin: 10px 0 11px; color: var(--muted); font-family: var(--mono); font-size: 11px; }
.import-status.loading { color: var(--purple); }
.import-status.success { color: #4c9b6d; }
.import-status.error { color: #b7595c; }
.import-preview { display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 12px; margin: 11px 0 17px; padding: 9px; border: 2px solid var(--ink); border-radius: 13px; background: var(--mint); }
.import-preview[hidden] { display: none; }
.import-preview img { width: 58px; height: 58px; border: 2px solid var(--ink); border-radius: 9px; object-fit: cover; }
.import-preview div { display: grid; gap: 4px; }
.preview-label { color: var(--purple); font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.import-preview b { font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: -0.04em; }
.import-preview span:last-child { color: var(--muted); font-family: var(--mono); font-size: 9px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-submit { width: 100%; margin-top: 27px; }
.toast { position: fixed; z-index: 30; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 9px; padding: 14px 18px; border: 2px solid var(--ink); border-radius: 999px; color: var(--ink); background: var(--lemon); font-family: var(--mono); font-size: 12px; box-shadow: 5px 6px 0 var(--ink); transform: translateY(25px); opacity: 0; pointer-events: none; transition: opacity 300ms ease, transform 450ms var(--ease); }
.toast.show { opacity: 1; transform: translateY(0) rotate(-1deg); }
.toast > span:first-child { color: var(--coral); }

.creator-modal { width: min(620px, calc(100% - 32px)); }
.auth-content { padding-top: 45px; }
.creator-lock { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--purple); font-family: var(--mono); font-size: 11px; letter-spacing: 0.11em; text-transform: uppercase; }
.creator-lock span { color: var(--coral); font-size: 15px; }
.auth-tabs { display: flex; gap: 7px; margin: 28px 0 10px; padding-bottom: 12px; border-bottom: 2px solid var(--line); }
.auth-tab { padding: 9px 13px; border: 2px solid transparent; border-radius: 999px; color: var(--muted); background: transparent; font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; transition: color 250ms ease, background 250ms ease, border-color 250ms ease; }
.auth-tab:hover, .auth-tab.active { border-color: var(--ink); color: var(--ink); background: var(--lemon); }
.auth-form[hidden] { display: none; }
.auth-form .modal-submit { margin-top: 28px; }
.auth-hint, .demo-auth-note { color: var(--muted); font-family: var(--mono); font-size: 11px; line-height: 1.55; }
.auth-hint { margin: 14px 0 0; }
.demo-auth-note { margin: 25px 0 0; padding-top: 15px; border-top: 2px solid var(--line); }
.auth-status { min-height: 18px; margin: 18px 0 0; color: var(--coral); font-family: var(--mono); font-size: 11px; line-height: 1.5; }
.auth-status.success { color: #4c9b6d; }
.auth-status.error { color: #b7595c; }
.handle-input { display: flex; align-items: stretch; overflow: hidden; border: 2px solid var(--ink); border-radius: 12px; background: var(--surface-soft); }
.handle-input span { display: inline-flex; align-items: center; padding-left: 14px; color: var(--muted); font-family: var(--mono); font-size: 13px; white-space: nowrap; }
.handle-input input { border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.handle-input:focus-within { border-color: var(--coral); box-shadow: 4px 4px 0 var(--lemon); }
.dashboard-modal { width: min(790px, calc(100% - 32px)); }
.dashboard-content { padding-top: 39px; }
.dashboard-topline { display: flex; align-items: start; justify-content: space-between; gap: 25px; }
.dashboard-topline h2 { margin: 0; font-size: clamp(44px, 6vw, 65px); }
.dashboard-signout { padding: 10px 0; border: 0; color: var(--muted); background: transparent; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; transition: color 250ms ease; }
.dashboard-signout:hover { color: var(--coral); }
.dashboard-grid { display: grid; grid-template-columns: 0.8fr 0.8fr 1.4fr; gap: 10px; margin: 30px 0 16px; }
.dashboard-stat { min-height: 130px; display: flex; flex-direction: column; justify-content: space-between; padding: 16px; border: 2px solid var(--ink); border-radius: 14px; background: var(--surface-soft); }
.dashboard-stat span, .dashboard-stat small { color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; }
.dashboard-stat strong { color: var(--coral); font-family: var(--serif); font-size: 43px; font-weight: 500; letter-spacing: -0.06em; line-height: 0.8; }
.dashboard-stat small { font-size: 10px; letter-spacing: 0.02em; text-transform: none; }
.dashboard-handle strong { overflow: hidden; color: var(--ink); font-family: var(--mono); font-size: 18px; letter-spacing: -0.03em; text-overflow: ellipsis; white-space: nowrap; }
.dashboard-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.dashboard-action { min-height: 124px; display: grid; align-content: start; gap: 7px; padding: 18px 16px; border: 2px solid var(--ink); border-radius: 15px; color: var(--ink); background: transparent; text-align: left; transition: transform 300ms var(--ease), background 250ms ease; }
.dashboard-action:hover { background: var(--mint); transform: translateY(-4px) rotate(-1deg); }
.dashboard-action > span { color: var(--coral); font-size: 24px; }
.dashboard-action b { font-size: 14px; }
.dashboard-action small { color: var(--muted); font-size: 12px; line-height: 1.4; }

.reveal { opacity: 0; }
.reveal.is-visible { animation-fill-mode: both; }
.reveal-up.is-visible { animation: reveal-up 900ms var(--ease) both; }
.reveal-float.is-visible { animation: reveal-float 1100ms var(--ease) both; }
.reveal-scale.is-visible { animation: reveal-scale 900ms var(--ease) both; }

@keyframes reveal-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes reveal-float { from { opacity: 0; transform: translateY(28px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes reveal-scale { from { opacity: 0; transform: scale(0.94) rotate(-2deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes card-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; } }
@keyframes breathe { 0%, 100% { transform: scale(0.98); } 50% { transform: scale(1.02); } }
@keyframes drift { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(14px, -26px, 0); } }
@keyframes bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@keyframes twinkle { 0%, 100% { opacity: 0.42; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes orbit-spin { from { rotate: 0deg; } to { rotate: 360deg; } }
@keyframes orbit-spin-reverse { from { rotate: 0deg; } to { rotate: -360deg; } }
@keyframes glyph-breathe { 0%, 100% { transform: rotate(45deg) scaleY(0.9); } 50% { transform: rotate(45deg) scaleY(1.1); } }

@media (max-width: 980px) {
  .hero-section { grid-template-columns: 1fr; gap: 28px; padding-top: 63px; }
  .hero-copy { max-width: 680px; padding-left: 0; }
  .hero-sky { min-height: min(680px, 86vw); }
  .hero-sky::before { width: 62%; }
  .wishlist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-section { padding-inline: 5vw; }
}

@media (max-width: 640px) {
  .site-header, .section-shell { width: min(100% - 36px, var(--max)); }
  .site-header { min-height: 72px; }
  .site-nav { display: none; }
  .header-actions { gap: 7px; }
  .creator-entry { width: 39px; height: 39px; min-height: 39px; justify-content: center; padding: 0; }
  .creator-entry span:last-child, .theme-text { display: none; }
  .theme-toggle { width: 36px; height: 36px; justify-content: center; padding: 0; }
  .hero-section { min-height: auto; padding: 58px 0 72px; }
  h1 { font-size: clamp(57px, 16vw, 88px); }
  h2 { font-size: clamp(46px, 13.5vw, 68px); }
  .hero-lede { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-sky { min-height: 118vw; margin-top: 9px; border-radius: 47% 53% 44% 56% / 34% 42% 58% 66%; }
  .hero-sky::before { width: 72%; }
  .orbit-large { width: 109%; }
  .orbit-small { width: 76%; height: 39vw; }
  .timer-panel { width: min(88%, 390px); padding: 23px 19px 20px; }
  .timer-panel h2 { margin-top: 21px; font-size: 25px; }
  .sky-label { top: 15%; right: 4%; font-size: 9px; }
  .sky-caption { right: 0; bottom: 6%; }
  .list-section { padding: 75px 0 105px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 23px; }
  .list-meta { width: 100%; justify-content: space-between; padding: 0; }
  .filter-row { margin-top: 38px; overflow-x: auto; scrollbar-width: none; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-button { white-space: nowrap; }
  .wishlist-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .wish-image-wrap { aspect-ratio: 0.77; }
  .wish-tag { top: 9px; left: 9px; padding: 5px 7px; font-size: 8px; }
  .wish-info { padding: 15px 12px 13px; }
  .wish-info h3 { min-height: 49px; font-size: 20px; }
  .wish-info p { min-height: 64px; margin-bottom: 12px; font-size: 11px; }
  .wish-bottom { display: grid; gap: 13px; }
  .wish-price { font-size: 25px; }
  .wish-actions { justify-content: flex-end; }
  .wish-action { height: 31px; font-size: 10px; }
  .wish-action.view { display: none; }
  .detail-section { grid-template-columns: 1fr; gap: 75px; padding: 5px 25px 115px; }
  .detail-image { width: calc(100% - 22px); max-width: 390px; }
  .detail-copy { padding-left: 0; }
  .gift-section { min-height: 500px; width: calc(100% - 36px); }
  .gift-copy { padding: 0 27px; }
  .gift-section::before { width: 550px; }
  .gift-section::after { width: 720px; }
  .site-footer { align-items: flex-start; flex-wrap: wrap; gap: 17px; padding-bottom: 28px; }
  .site-footer p { width: 100%; order: 3; margin: 0; }
  .modal-content { padding-inline: 21px; }
  .modal h2 { font-size: 42px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .input-with-action { grid-template-columns: 1fr; }
  .mini-button { min-height: 43px; }
  .dashboard-grid, .dashboard-actions { grid-template-columns: 1fr; }
  .dashboard-stat { min-height: 105px; }
  .dashboard-action { min-height: 105px; }
  .dashboard-topline { gap: 12px; }
  .dashboard-signout { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* Minimal first screen: the countdown is the only hero idea. */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
body::after { opacity: 0.12; }
.ambient-one, .ambient-two { opacity: 0.12; }
.creator-entry { min-height: 30px; padding: 0 4px; border: 0; border-radius: 0; color: var(--muted); background: transparent; font-size: 10px; letter-spacing: 0.08em; opacity: 0.68; }
.creator-entry:hover, .creator-entry.active { color: var(--ink); background: transparent; box-shadow: none; opacity: 1; transform: none; }
.creator-entry-mark { font-size: 12px; }
.hero-section { display: block; min-height: calc(100svh - 86px); padding: 38px 0 105px; }
.hero-sky { width: min(100%, 960px); min-height: clamp(520px, 68svh, 650px); margin: 0 auto; overflow: hidden; border: 1px solid color-mix(in srgb, var(--ink) 22%, transparent); border-radius: 34px; background: linear-gradient(135deg, color-mix(in srgb, var(--lilac) 48%, var(--surface)) 0%, color-mix(in srgb, var(--pink) 36%, var(--surface)) 53%, color-mix(in srgb, var(--sky) 28%, var(--surface)) 100%); box-shadow: none; transform: none; }
.hero-sky:hover { transform: none; }
html[data-theme="night"] .hero-sky { background: linear-gradient(135deg, color-mix(in srgb, #7063ba 70%, var(--surface)) 0%, color-mix(in srgb, #9f608a 50%, var(--surface)) 53%, color-mix(in srgb, #4c9ab5 42%, var(--surface)) 100%); }
.hero-sky::before { width: 62%; border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent); background: transparent; animation: breathe 11s ease-in-out infinite; }
.hero-sky::after { right: -34px; bottom: -45px; width: 180px; height: 180px; border: 1px solid color-mix(in srgb, var(--ink) 14%, transparent); background: color-mix(in srgb, var(--lemon) 26%, transparent); box-shadow: none; opacity: 0.72; }
.hero-center { position: relative; z-index: 1; display: grid; justify-items: center; align-content: center; width: min(100%, 820px); min-height: inherit; margin: auto; padding: 42px 24px; }
.hero-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 19px; color: var(--purple); font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.hero-orbit { position: absolute; z-index: -1; border: 1px dashed color-mix(in srgb, var(--ink) 28%, transparent); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 730px; height: 300px; transform: rotate(-10deg); animation: orbit-spin 32s linear infinite; }
.hero-orbit-two { width: 430px; height: 620px; transform: rotate(30deg); animation: orbit-spin-reverse 28s linear infinite; }
.timer-panel { width: min(100%, 700px); padding: 37px 46px 32px; border: 1px solid color-mix(in srgb, var(--ink) 42%, transparent); border-radius: 20px; background: color-mix(in srgb, var(--surface) 92%, transparent); box-shadow: 0 18px 50px rgba(50, 36, 61, 0.09); transform: none; }
.hero-sky:hover .timer-panel { transform: translateY(-4px); }
.timer-kicker { font-size: 11px; }
.timer-panel h2 { margin: 29px 0 11px; font-size: clamp(38px, 5vw, 59px); }
.timer-date { margin-bottom: 33px; font-size: 12px; }
.countdown-grid { gap: 18px; }
.countdown-unit strong { font-size: clamp(42px, 5.4vw, 68px); }
.countdown-unit span { font-size: 11px; }
.countdown-divider { padding-top: 9px; font-size: 30px; }
.timer-progress { height: 5px; margin: 31px 0 18px; border-width: 1px; }
.timer-bottomline { font-size: 10px; }
.hero-wishlist-cta { min-width: 280px; min-height: 68px; margin-top: 34px; border-radius: 12px; font-size: 16px; box-shadow: 5px 6px 0 var(--ink); }
.hero-wishlist-cta:hover { box-shadow: 7px 8px 0 var(--ink); }
.list-section { padding-top: 72px; }
.list-meta { padding-bottom: 0; }
.wish-card { border: 1px solid var(--line); border-radius: 18px; box-shadow: none; }
.wish-card:nth-child(2n), .wish-card:nth-child(3n) { border-radius: 18px; transform: none; }
.wish-card:hover, .wish-card:nth-child(2n):hover { box-shadow: 0 12px 24px rgba(50, 36, 61, 0.1); transform: translateY(-6px); }
.wish-image-wrap { border-bottom: 1px solid var(--line); }
.wish-info h3 { font-size: 25px; }
.dashboard-referral, .referral-note { color: var(--muted); font-family: var(--mono); font-size: 11px; line-height: 1.55; }
.referral-note { margin: 21px 0 0; padding: 13px 0 0; border-top: 1px solid var(--line); }
.dashboard-referral { margin: -7px 0 23px; }

@media (max-width: 640px) {
  .hero-section { min-height: auto; padding: 22px 0 80px; }
  .hero-sky { min-height: 540px; border-radius: 24px; }
  .hero-center { padding: 35px 13px; }
  .hero-kicker { font-size: 9px; }
  .hero-orbit-one { width: 125%; height: 210px; }
  .hero-orbit-two { width: 70%; height: 560px; }
  .timer-panel { padding: 25px 16px 22px; border-radius: 16px; }
  .timer-panel h2 { margin-top: 23px; font-size: 35px; }
  .timer-date { margin-bottom: 28px; font-size: 10px; }
  .countdown-grid { gap: 7px; }
  .countdown-unit strong { font-size: clamp(31px, 10vw, 49px); }
  .countdown-unit span { font-size: 9px; }
  .countdown-divider { padding-top: 4px; font-size: 20px; }
  .hero-wishlist-cta { width: min(100%, 320px); min-width: 0; min-height: 62px; margin-top: 28px; font-size: 15px; }
}

/* Floating countdown: large on entry, compact after the wishlist takes over. */
.countdown-banner { position: fixed; z-index: 8; top: 50%; left: 50%; width: min(900px, calc(100% - 48px)); transform: translate(-50%, -46%); transition: top 900ms var(--ease), right 900ms var(--ease), bottom 900ms var(--ease), left 900ms var(--ease), width 900ms var(--ease), transform 900ms var(--ease), filter 900ms ease; animation: countdown-in 900ms var(--ease) both; }
.countdown-banner::before { position: absolute; z-index: -1; inset: -28px -42px; border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent); border-radius: 30px; content: ""; background: color-mix(in srgb, var(--lilac) 34%, transparent); box-shadow: 0 24px 80px rgba(50, 36, 61, 0.13); backdrop-filter: blur(18px); }
html[data-theme="night"] .countdown-banner::before { background: color-mix(in srgb, var(--lilac) 22%, transparent); }
.countdown-banner .timer-panel { width: 100%; padding: 38px 48px 31px; border-color: color-mix(in srgb, var(--ink) 35%, transparent); background: color-mix(in srgb, var(--surface) 94%, transparent); box-shadow: 0 18px 50px rgba(50, 36, 61, 0.12); }
.countdown-banner .timer-panel h2 { font-size: clamp(42px, 5vw, 62px); }
.countdown-banner .timer-controls { display: flex; align-items: center; }
.countdown-expand { display: none; }
.countdown-banner.is-collapsed { top: auto; right: 24px; bottom: 24px; left: auto; width: min(282px, calc(100% - 36px)); transform: none; filter: drop-shadow(0 12px 25px rgba(50, 36, 61, 0.14)); }
.countdown-banner.is-collapsed::before { inset: -7px; border-radius: 18px; background: color-mix(in srgb, var(--lilac) 25%, transparent); box-shadow: none; backdrop-filter: blur(12px); }
.countdown-banner.is-collapsed .timer-panel { padding: 15px 16px 14px; border-radius: 16px; box-shadow: 0 7px 20px rgba(50, 36, 61, 0.12); cursor: pointer; }
.countdown-banner.is-collapsed .timer-kicker, .countdown-banner.is-collapsed .timer-date, .countdown-banner.is-collapsed .timer-progress, .countdown-banner.is-collapsed .timer-bottomline { display: none; }
.countdown-banner.is-collapsed .timer-topline { align-items: center; }
.countdown-banner.is-collapsed .timer-topline::before { width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; content: ""; background: var(--coral); }
.countdown-banner.is-collapsed .timer-panel h2 { margin: 0 0 10px; font-size: 23px; }
.countdown-banner.is-collapsed .countdown-grid { gap: 7px; }
.countdown-banner.is-collapsed .countdown-unit { gap: 4px; }
.countdown-banner.is-collapsed .countdown-unit strong { font-size: 27px; }
.countdown-banner.is-collapsed .countdown-unit span { font-size: 8px; }
.countdown-banner.is-collapsed .countdown-divider { padding-top: 3px; font-size: 16px; }
.countdown-banner.is-collapsed #open-timer { display: none; }
.countdown-banner.is-collapsed .countdown-expand { display: inline-flex; width: 27px; height: 27px; font-size: 13px; }
.countdown-banner.is-collapsed .countdown-expand:hover { transform: rotate(-45deg); }
.countdown-banner:focus-visible { outline: 3px solid var(--coral); outline-offset: 8px; }
.list-section { padding-top: 118px; }

@keyframes countdown-in { from { opacity: 0; transform: translate(-50%, -39%) scale(0.94); } to { opacity: 1; transform: translate(-50%, -46%) scale(1); } }

@media (max-width: 640px) {
  .countdown-banner { top: 49%; width: calc(100% - 40px); }
  .countdown-banner::before { inset: -14px -16px; border-radius: 24px; }
  .countdown-banner .timer-panel { padding: 26px 18px 22px; border-radius: 17px; }
  .countdown-banner .timer-panel h2 { margin-top: 22px; font-size: 36px; }
  .countdown-banner .timer-date { margin-bottom: 26px; font-size: 10px; }
  .countdown-banner .countdown-grid { gap: 7px; }
  .countdown-banner .countdown-unit strong { font-size: clamp(31px, 10vw, 49px); }
  .countdown-banner .countdown-unit span { font-size: 9px; }
  .countdown-banner .countdown-divider { padding-top: 4px; font-size: 20px; }
  .countdown-banner.is-collapsed { right: 18px; bottom: 18px; width: min(262px, calc(100% - 36px)); }
  .countdown-banner.is-collapsed .timer-panel { padding: 14px 14px 13px; }
  .countdown-banner.is-collapsed .timer-panel h2 { font-size: 20px; }
  .countdown-banner.is-collapsed .countdown-unit strong { font-size: 23px; }
  .list-section { padding-top: 85px; }
}
