:root{
  --bg1:#0b2a1a;   /* deep pine */
  --bg2:#5a0b12;   /* cranberry */
  --card:#08160fcc;
  --text:#fff8f2;
  --muted:#e7ffe6;
  /* classic Christmas gold (bright, not muddy) */
  --gold:#ffd34d;
  --red:#e0192c;
  --green:#18c26e;
  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --stroke: rgba(255,255,255,.14);
  --radius: 22px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font-family: ui-rounded, system-ui, -apple-system, Segoe UI, Roboto, "Comic Sans MS", "Trebuchet MS", Arial, sans-serif;
  overflow-x:hidden;
  overflow-y:auto;
  /* Solid background (no gradients) to avoid any muddy/brown mixes. */
  background: #04150c;
}

@keyframes bgWobble{
  0%{filter:none}
  100%{filter:none}
}

.top{
  padding:22px 16px 0;
  position: relative;
  z-index: 1;
}

.topbar{
  width: min(1100px, 100%);
  margin:0 auto 16px;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(0,0,0,.30);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}
.topbar__row{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
  text-align: center;
}
.stamp{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(24,194,110,.20);
}
.route{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.25);
}
.status{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(224,25,44,.20);
}
.sep{
  opacity:.7;
}
.arrow{
  opacity:.85;
}

.hero{
  width:min(1100px, 96vw);
  margin:0 auto 14px;
  text-align:center;
}
.tag{
  margin:0 0 8px;
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(6px);
  font-weight:700;
  color:var(--muted);
}
.title{
  margin:10px 0 8px;
  line-height:1;
  font-weight:1000;
}
.title__glow{
  display:block;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#ffe9f6;
  text-shadow:
    0 0 10px rgba(255, 70, 175, .9),
    0 0 25px rgba(255, 70, 175, .55),
    0 3px 0 rgba(0,0,0,.35);
}
.title__big{
  display:block;
  font-size: clamp(54px, 7vw, 96px);
  /* Solid color (no gradients) + festive shadows */
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--gold);
  text-shadow:
    0 4px 0 rgba(0,0,0,.55),
    -2px 0 0 rgba(224,25,44,.55),
    2px 0 0 rgba(24,194,110,.55),
    0 0 18px rgba(0,0,0,.35);
  filter: none;
}
.subtitle{
  margin:0 auto 12px;
  max-width: 70ch;
  color: rgba(255,255,255,.88);
  font-weight:650;
}

.wrap{
  width:min(1100px, 96vw);
  margin: 0 auto;
  padding: 10px 0 18px;
  position: relative;
  z-index: 1;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.card{
  grid-column: span 12;
  position:relative;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  backdrop-filter: blur(8px);
  overflow:hidden;
}
.card::before{
  content:none;
}
.card > *{position:relative; z-index:1}

.card--important{
  border-width:2px;
}
.card--important::after{
  content:none;
}

.card__title{
  margin: 6px 0 10px;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing:.01em;
}
.badge{
  display:inline-block;
  margin-left:10px;
  font-size:.72em;
  padding: 6px 10px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(224,25,44,.70);
  color: #fff;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
  animation: badgeBlink 1.2s steps(2, end) infinite;
}
@keyframes badgeBlink{
  50%{filter: brightness(1.35) saturate(1.7)}
}

.card__lead{
  margin:0 0 14px;
  font-size: clamp(16px, 2vw, 20px);
  line-height:1.45;
  color: rgba(255,255,255,.92);
}
.card__lead strong{
  color: var(--gold);
  text-shadow: 0 0 16px rgba(243, 251, 255, .20);
}

.cta{
  margin-top: 14px;
  padding: 12px 12px 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 950;
  letter-spacing:.02em;
  text-decoration:none;
  color: #fff;
  user-select:none;
  transform: translateY(0);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}
.btn--track{
  width: min(520px, 100%);
  background: rgba(224,25,44,.92);
  box-shadow:
    0 18px 35px rgba(0,0,0,.35),
    0 0 0 3px rgba(243,251,255,.16) inset;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
}
.btn--track:hover{
  filter: brightness(1.08);
  box-shadow:
    0 22px 45px rgba(0,0,0,.42),
    0 0 22px rgba(243,251,255,.16),
    0 0 0 3px rgba(243,251,255,.22) inset;
  transform: translateY(-1px);
}
.btn--track:active{
  transform: translateY(0px);
  filter: brightness(1.02) saturate(1.05);
}
.btn--track:focus-visible{
  outline: 3px solid rgba(243,251,255,.62);
  outline-offset: 4px;
}
.cta__sub{
  margin: 10px 4px 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.35;
}

.photo{
  margin: 4px 0 14px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.20);
}
.photo__img{
  display:block;
  width:100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.photo__cap{
  margin: 10px 4px 0;
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

.card__grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 10px;
}
.mini{
  grid-column: span 12;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.20);
  padding: 12px 12px 10px;
}
.mini__title{
  margin: 0 0 6px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.86);
}
.mini__text{
  margin:0;
  color: rgba(255,255,255,.90);
  line-height:1.4;
  font-weight: 650;
}

.fineprint{
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.75);
}

.list{
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  font-weight: 650;
}
.list strong{color: var(--gold)}

.poem{
  margin:0;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  line-height: 1.5;
  font-weight: 750;
}
.small{
  margin: 10px 0 0;
  color: rgba(255,255,255,.85);
}

.big{
  margin: 0;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.35;
  font-weight: 850;
}
.blink{
  display:inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  background: rgba(24, 194, 110, .20);
  border: 1px solid rgba(255,255,255,.20);
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
  animation: blink 0.75s steps(2,end) infinite;
}
@keyframes blink{50%{opacity:.25}}

.foot{
  padding: 10px 16px 26px;
  text-align:center;
  position: relative;
  z-index: 1;
}
.foot__text{
  margin: 6px auto;
  width:min(900px, 96vw);
  color: rgba(255,255,255,.80);
}
.foot__text--tiny{
  font-size: 13px;
  color: rgba(255,255,255,.72);
}
code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 1px 6px;
  border-radius: 10px;
}

/* Aggressively festive “string lights” */
.lights{
  margin: 0 0 12px;
  height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}
.lights__svg{
  display:block;
  width:100%;
  height:100%;
}

/* Responsive layout */
@media (min-width: 720px){
  .grid .card{grid-column: span 6}
  .card__grid .mini{grid-column: span 4}
}
@media (min-width: 980px){
  .grid .card{grid-column: span 4}
}

@media (prefers-reduced-motion: reduce){
  *{animation:none !important; transition:none !important}
}


