/* ==========================================================
   Toolsyte Halloween Countdown
   Scoped premium seasonal page styles
   ========================================================== */

.halloween-body {
  margin: 0;
  min-height: 100vh;
  background: #05020b;
  color: #fff8ee;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.halloween-body * {
  box-sizing: border-box;
}

.halloween-fallback-header,
.halloween-fallback-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(5, 2, 11, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff8ee;
}

.halloween-fallback-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  background: #05020b;
}

.halloween-fallback-logo,
.halloween-fallback-link,
.halloween-fallback-footer a {
  color: #fff8ee;
  text-decoration: none;
}

.halloween-fallback-logo {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
}

.halloween-fallback-link,
.halloween-fallback-footer {
  font-size: 0.95rem;
  color: rgba(255, 248, 238, 0.76);
}

.halloween-page {
  --halloween-ink: #fff8ee;
  --halloween-muted: #b8a8c7;
  --halloween-orange: #ff8a1c;
  --halloween-orange-hot: #ffb35b;
  --halloween-purple: #7b2cff;
  --halloween-panel: rgba(18, 11, 31, 0.84);
  --halloween-border: rgba(255, 255, 255, 0.12);
  --halloween-shadow: 0 22px 90px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 4%, rgba(123, 44, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 88% 26%, rgba(255, 138, 28, 0.12), transparent 24rem),
    linear-gradient(180deg, #05020b 0%, #100719 44%, #07030d 100%);
  color: var(--halloween-ink);
}

.halloween-container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.halloween-hero {
  position: relative;
  display: grid;
  min-height: clamp(740px, calc(100svh + 110px), 940px);
  place-items: start center;
  padding: 84px 18px 120px;
  isolation: isolate;
}

.halloween-hero-scene,
.halloween-hero-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.halloween-hero-scene {
  z-index: -3;
  background:
    radial-gradient(circle at 50% 28%, rgba(93, 37, 148, 0.28), transparent 24rem),
    linear-gradient(180deg, #09051b 0%, #120520 46%, #06020a 100%);
}

.halloween-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 2, 11, 0.2) 0%, rgba(5, 2, 11, 0.42) 46%, rgba(5, 2, 11, 0.88) 100%),
    radial-gradient(circle at 50% 42%, rgba(255, 138, 28, 0.08), transparent 34rem);
}

.halloween-moon {
  position: absolute;
  top: 8%;
  left: 50%;
  width: clamp(150px, 28vw, 290px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.9), transparent 9%),
    radial-gradient(circle at 68% 58%, rgba(174, 166, 190, 0.34), transparent 12%),
    radial-gradient(circle at 44% 68%, rgba(154, 148, 170, 0.28), transparent 10%),
    radial-gradient(circle, #fffdf4 0%, #e8dfc8 48%, #b9abc8 70%, rgba(185, 171, 200, 0.08) 72%);
  box-shadow: 0 0 70px rgba(255, 242, 195, 0.54), 0 0 160px rgba(123, 44, 255, 0.24);
  opacity: 0.96;
}

.halloween-bat {
  position: absolute;
  width: 54px;
  height: 20px;
  opacity: 0.74;
  animation: halloween-bat-float 13s linear infinite;
}

.halloween-bat::before,
.halloween-bat::after {
  position: absolute;
  top: 5px;
  width: 28px;
  height: 15px;
  content: "";
  background: #09020e;
  border-radius: 50% 50% 8px 8px;
}

.halloween-bat::before {
  left: 0;
  transform: rotate(18deg);
}

.halloween-bat::after {
  right: 0;
  transform: rotate(-18deg);
}

.halloween-bat-one {
  top: 23%;
  left: -8%;
  animation-delay: -2s;
}

.halloween-bat-two {
  top: 15%;
  left: -16%;
  transform: scale(0.68);
  animation-duration: 18s;
  animation-delay: -8s;
}

.halloween-bat-three {
  top: 33%;
  left: -12%;
  transform: scale(0.84);
  animation-duration: 16s;
  animation-delay: -11s;
}

.halloween-forest {
  position: absolute;
  right: -8%;
  bottom: 0;
  left: -8%;
  height: 38%;
  background-repeat: repeat-x;
  background-position: bottom;
  pointer-events: none;
}

.halloween-forest-back {
  opacity: 0.55;
  background-image:
    linear-gradient(72deg, transparent 42%, rgba(8, 4, 16, 0.92) 43% 48%, transparent 49%),
    linear-gradient(105deg, transparent 44%, rgba(8, 4, 16, 0.92) 45% 50%, transparent 51%),
    linear-gradient(180deg, transparent 0 44%, rgba(8, 4, 16, 0.98) 45%);
  background-size: 90px 100%, 110px 100%, 100% 100%;
}

.halloween-forest-front {
  height: 31%;
  opacity: 0.92;
  background-image:
    linear-gradient(76deg, transparent 41%, #040108 42% 48%, transparent 49%),
    linear-gradient(112deg, transparent 42%, #040108 43% 50%, transparent 51%),
    linear-gradient(180deg, transparent 0 40%, #040108 41%);
  background-size: 70px 100%, 88px 100%, 100% 100%;
}

.halloween-house {
  position: absolute;
  right: max(7%, calc((100vw - 1100px) / 2));
  bottom: 15%;
  width: clamp(150px, 25vw, 290px);
  height: clamp(120px, 20vw, 218px);
  background: linear-gradient(180deg, #0b0310, #020105);
  clip-path: polygon(0 42%, 18% 42%, 18% 24%, 28% 24%, 28% 42%, 38% 42%, 38% 15%, 48% 15%, 48% 42%, 100% 42%, 100% 100%, 0 100%);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

.halloween-house-roof {
  position: absolute;
  right: -7%;
  bottom: 57%;
  left: -7%;
  height: 42%;
  background: #020105;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.halloween-house-window,
.halloween-house-door {
  position: absolute;
  background: rgba(255, 148, 42, 0.88);
  box-shadow: 0 0 22px rgba(255, 127, 24, 0.8);
}

.halloween-house-window {
  width: 12%;
  height: 17%;
  border-radius: 12px 12px 3px 3px;
}

.halloween-house-window-one {
  right: 58%;
  bottom: 34%;
}

.halloween-house-window-two {
  right: 24%;
  bottom: 43%;
}

.halloween-house-door {
  right: 42%;
  bottom: 0;
  width: 17%;
  height: 32%;
  border-radius: 16px 16px 0 0;
}

.halloween-pumpkin {
  position: absolute;
  bottom: 8.5%;
  border-radius: 48% 52% 44% 46%;
  background:
    radial-gradient(circle at 50% 56%, rgba(255, 214, 88, 0.9) 0 4%, transparent 5%),
    repeating-radial-gradient(ellipse at center, rgba(110, 45, 7, 0.24) 0 9%, transparent 10% 20%),
    linear-gradient(145deg, #ffae31, #d9560a 65%, #7b2508);
  box-shadow: 0 0 32px rgba(255, 104, 11, 0.44), inset 0 -12px 22px rgba(73, 18, 4, 0.46);
  animation: halloween-pumpkin-glow 4.5s ease-in-out infinite;
}

.halloween-pumpkin::before {
  position: absolute;
  top: -18%;
  left: 45%;
  width: 13%;
  height: 24%;
  content: "";
  background: #442910;
  border-radius: 8px 8px 0 0;
  transform: rotate(8deg);
}

.halloween-pumpkin-one {
  left: 8%;
  width: clamp(66px, 10vw, 120px);
  aspect-ratio: 1.15;
}

.halloween-pumpkin-two {
  left: 18%;
  bottom: 7%;
  width: clamp(42px, 7vw, 80px);
  aspect-ratio: 1.12;
  animation-delay: -1.2s;
}

.halloween-pumpkin-three {
  right: 10%;
  width: clamp(50px, 7vw, 86px);
  aspect-ratio: 1.08;
  animation-delay: -2s;
}

.halloween-fog {
  position: absolute;
  right: -20%;
  left: -20%;
  height: 26%;
  background:
    radial-gradient(ellipse at 12% 64%, rgba(255, 255, 255, 0.15), transparent 32%),
    radial-gradient(ellipse at 48% 54%, rgba(192, 178, 214, 0.13), transparent 34%),
    radial-gradient(ellipse at 80% 58%, rgba(255, 255, 255, 0.11), transparent 30%);
  filter: blur(14px);
  pointer-events: none;
}

.halloween-fog-one {
  bottom: 5%;
  opacity: 0.66;
  animation: halloween-fog-drift 18s ease-in-out infinite alternate;
}

.halloween-fog-two {
  bottom: 20%;
  opacity: 0.34;
  animation: halloween-fog-drift 24s ease-in-out infinite alternate-reverse;
}

.halloween-particles {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    radial-gradient(circle, rgba(255, 179, 91, 0.68) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(176, 122, 255, 0.52) 0 1px, transparent 2px);
  background-position: 0 0, 42px 58px;
  background-size: 92px 92px, 130px 130px;
  animation: halloween-particle-rise 20s linear infinite;
}

.halloween-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1040px, 100%);
  margin: 0 auto;
  text-align: center;
}

.halloween-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.halloween-hero-actions {
  position: absolute;
  top: clamp(16px, 2.6vw, 30px);
  right: clamp(16px, 3vw, 44px);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.halloween-hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(18, 11, 31, 0.58);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: rgba(255, 248, 238, 0.92);
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.halloween-hero-action:hover {
  border-color: rgba(255, 179, 91, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(20, 11, 35, 0.68);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34), 0 0 26px rgba(255, 138, 28, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.halloween-hero-action:focus-visible {
  outline: 3px solid rgba(255, 179, 91, 0.72);
  outline-offset: 4px;
}

.halloween-fullscreen-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  color: currentColor;
}

.halloween-fullscreen-icon-open {
  background:
    linear-gradient(currentColor 0 0) left top / 8px 2px no-repeat,
    linear-gradient(currentColor 0 0) left top / 2px 8px no-repeat,
    linear-gradient(currentColor 0 0) right top / 8px 2px no-repeat,
    linear-gradient(currentColor 0 0) right top / 2px 8px no-repeat,
    linear-gradient(currentColor 0 0) left bottom / 8px 2px no-repeat,
    linear-gradient(currentColor 0 0) left bottom / 2px 8px no-repeat,
    linear-gradient(currentColor 0 0) right bottom / 8px 2px no-repeat,
    linear-gradient(currentColor 0 0) right bottom / 2px 8px no-repeat;
}

.halloween-fullscreen-icon-close {
  display: none;
}

.halloween-fullscreen-icon-close::before,
.halloween-fullscreen-icon-close::after {
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
}

.halloween-fullscreen-icon-close::before {
  transform: rotate(45deg);
}

.halloween-fullscreen-icon-close::after {
  transform: rotate(-45deg);
}

.halloween-share-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  color: currentColor;
  background:
    radial-gradient(circle at 4px 9px, currentColor 0 2px, transparent 2.6px),
    radial-gradient(circle at 14px 4px, currentColor 0 2px, transparent 2.6px),
    radial-gradient(circle at 14px 14px, currentColor 0 2px, transparent 2.6px);
}

.halloween-share-icon::before,
.halloween-share-icon::after {
  position: absolute;
  left: 5px;
  width: 10px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
  opacity: 0.86;
  transform-origin: left center;
}

.halloween-share-icon::before {
  top: 7px;
  transform: rotate(-26deg);
}

.halloween-share-icon::after {
  bottom: 7px;
  transform: rotate(26deg);
}

.halloween-share-toast {
  position: absolute;
  top: clamp(72px, 7vw, 92px);
  right: clamp(16px, 3vw, 44px);
  z-index: 6;
  max-width: min(240px, calc(100% - 32px));
  padding: 10px 14px;
  border: 1px solid rgba(255, 179, 91, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(18, 11, 31, 0.74);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.3), 0 0 24px rgba(255, 138, 28, 0.12);
  color: rgba(255, 248, 238, 0.92);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  backdrop-filter: blur(14px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.halloween-share-toast[hidden] {
  display: none;
}

.halloween-share-toast-visible {
  opacity: 1;
  transform: translateY(0);
}

.halloween-kicker {
  margin: 0 0 12px;
  color: var(--halloween-orange-hot);
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.halloween-hero-title {
  max-width: 1060px;
  margin: 0 auto 20px;
  color: #fff8ee;
  font-size: clamp(3rem, 6.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 0 28px rgba(255, 138, 28, 0.24), 0 12px 52px rgba(0, 0, 0, 0.5);
}

.halloween-hero-subtitle {
  margin: 0;
  color: rgba(255, 248, 238, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
}

.halloween-hero-date {
  margin: 16px 0 24px;
  color: var(--halloween-orange-hot);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 800;
}

.halloween-clock {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 18px);
  width: min(920px, 100%);
  margin: 0 auto;
}

.halloween-countdown-card {
  min-height: clamp(104px, 13vw, 148px);
  padding: clamp(18px, 2.4vw, 24px) 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(16, 8, 29, 0.58);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34), 0 0 36px rgba(255, 118, 17, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.halloween-countdown-card:hover {
  border-color: rgba(255, 179, 91, 0.28);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.38), 0 0 38px rgba(255, 118, 17, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.halloween-countdown-number {
  display: block;
  color: var(--halloween-orange-hot);
  font-size: clamp(2.15rem, 7vw, 5.1rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgba(255, 122, 15, 0.62), 0 0 56px rgba(255, 122, 15, 0.26);
  font-variant-numeric: tabular-nums;
}

.halloween-countdown-label {
  display: block;
  margin-top: 12px;
  color: rgba(255, 248, 238, 0.76);
  font-size: clamp(0.72rem, 1.7vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.halloween-button,
.halloween-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 24px;
  border: 1px solid rgba(255, 190, 104, 0.68);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb35b, #ff7a12 48%, #a837ff);
  box-shadow: 0 14px 42px rgba(255, 111, 15, 0.3);
  color: #16050c;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.halloween-button:hover,
.halloween-link-button:hover {
  box-shadow: 0 18px 54px rgba(255, 111, 15, 0.42);
  filter: saturate(1.08);
  transform: translateY(-2px);
}

.halloween-button:focus-visible,
.halloween-link-button:focus-visible,
.halloween-fallback-logo:focus-visible,
.halloween-fallback-link:focus-visible,
.halloween-fallback-footer a:focus-visible {
  outline: 3px solid rgba(255, 179, 91, 0.72);
  outline-offset: 4px;
}

body.halloween-fullscreen {
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
  overscroll-behavior: none;
  background: #06020a;
}

body.halloween-fullscreen #site-header,
body.halloween-fullscreen #site-footer,
body.halloween-fullscreen .halloween-intro,
body.halloween-fullscreen .halloween-article,
body.halloween-fullscreen .halloween-faq-section,
body.halloween-fullscreen .halloween-more-section {
  display: none !important;
}

body.halloween-fullscreen .halloween-page {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #06020a;
}

.halloween-page:fullscreen,
.halloween-page:-webkit-full-screen,
.halloween-page:-ms-fullscreen {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: #06020a;
}

.halloween-page::backdrop {
  background: #06020a;
}

body.halloween-fullscreen .halloween-hero {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  padding: clamp(64px, 8vh, 92px) clamp(16px, 4vw, 56px);
  place-items: center;
  overflow: hidden;
}

body.halloween-fullscreen .halloween-hero-actions {
  position: fixed;
  top: clamp(14px, 2.5vw, 28px);
  right: clamp(14px, 3vw, 32px);
  z-index: 10000;
}

body.halloween-fullscreen .halloween-share-toast {
  position: fixed;
  top: clamp(66px, 7vw, 84px);
  right: clamp(14px, 3vw, 32px);
  z-index: 10000;
}

body.halloween-fullscreen .halloween-fullscreen-icon-open {
  display: none;
}

body.halloween-fullscreen .halloween-fullscreen-icon-close {
  display: block;
}

body.halloween-fullscreen .halloween-hero-inner {
  width: min(1180px, 100%);
}

body.halloween-fullscreen .halloween-hero-title {
  max-width: 1120px;
  font-size: clamp(3.1rem, 6.9vw, 5.7rem);
}

body.halloween-fullscreen .halloween-hero-date {
  margin-bottom: clamp(24px, 3.2vh, 38px);
}

body.halloween-fullscreen .halloween-clock {
  width: min(1040px, 100%);
  gap: clamp(12px, 2.2vw, 22px);
}

body.halloween-fullscreen .halloween-countdown-card {
  min-height: clamp(124px, 15vw, 172px);
}

body.halloween-fullscreen .halloween-countdown-number {
  font-size: clamp(2.55rem, 7.8vw, 5.8rem);
}

body.halloween-fullscreen .halloween-button {
  margin-top: clamp(24px, 4vh, 40px);
}

.halloween-intro,
.halloween-article,
.halloween-faq-section,
.halloween-more-section {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
}

.halloween-intro {
  padding-top: 72px;
}

.halloween-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: stretch;
}

.halloween-intro-copy,
.halloween-quick-card,
.halloween-content-section,
.halloween-faq-item,
.halloween-more-card,
.halloween-article-header {
  border: 1px solid var(--halloween-border);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--halloween-panel);
  box-shadow: var(--halloween-shadow);
}

.halloween-intro-copy,
.halloween-quick-card,
.halloween-article-header,
.halloween-content-section,
.halloween-more-card {
  padding: clamp(24px, 4vw, 42px);
}

.halloween-page h2,
.halloween-page h3 {
  margin: 0 0 16px;
  color: #fff8ee;
  line-height: 1.12;
  letter-spacing: 0;
}

.halloween-page h2 {
  font-size: clamp(1.65rem, 4vw, 3rem);
}

.halloween-page h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.halloween-page p {
  margin: 0;
  color: var(--halloween-muted);
  font-size: clamp(1rem, 1.6vw, 1.075rem);
  line-height: 1.78;
}

.halloween-page p + p {
  margin-top: 16px;
}

.halloween-facts {
  display: grid;
  gap: 12px;
  margin: 0;
}

.halloween-fact {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.halloween-fact:last-child {
  border-bottom: 0;
}

.halloween-fact dt {
  color: rgba(255, 179, 91, 0.92);
  font-weight: 900;
}

.halloween-fact dd {
  min-width: 0;
  margin: 0;
  color: rgba(255, 248, 238, 0.84);
  line-height: 1.5;
}

.halloween-article {
  padding-top: 16px;
}

.halloween-article-header {
  margin-bottom: clamp(22px, 5vw, 44px);
  text-align: center;
}

.halloween-content-section {
  margin: 22px 0;
}

.halloween-content-section h2 {
  position: relative;
  padding-left: 18px;
}

.halloween-content-section h2::before {
  position: absolute;
  top: 0.18em;
  bottom: 0.18em;
  left: 0;
  width: 4px;
  content: "";
  border-radius: 99px;
  background: linear-gradient(180deg, var(--halloween-orange-hot), var(--halloween-purple));
  box-shadow: 0 0 18px rgba(255, 138, 28, 0.42);
}

.halloween-image-frame {
  position: relative;
  margin: clamp(28px, 5vw, 48px) 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44), 0 0 46px rgba(255, 114, 14, 0.12);
}

.halloween-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.halloween-image[hidden] {
  display: none;
}

.halloween-image-frame-fallback {
  min-height: clamp(240px, 52vw, 520px);
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 245, 204, 0.9) 0 9%, rgba(255, 245, 204, 0.12) 10% 18%, transparent 19%),
    radial-gradient(circle at 30% 72%, rgba(255, 138, 28, 0.42), transparent 16%),
    radial-gradient(circle at 70% 72%, rgba(255, 138, 28, 0.34), transparent 14%),
    linear-gradient(180deg, #120924 0%, #1a0b27 45%, #09030e 100%);
}

.halloween-image-frame-fallback::before,
.halloween-image-frame-fallback::after {
  position: absolute;
  right: 0;
  left: 0;
  content: "";
  pointer-events: none;
}

.halloween-image-frame-fallback::before {
  bottom: 0;
  height: 42%;
  background:
    linear-gradient(70deg, transparent 42%, #030107 43% 48%, transparent 49%) 0 0 / 72px 100% repeat-x,
    linear-gradient(108deg, transparent 42%, #030107 43% 50%, transparent 51%) 0 0 / 84px 100% repeat-x,
    linear-gradient(180deg, transparent 0 34%, #030107 35%);
}

.halloween-image-frame-fallback::after {
  bottom: 9%;
  left: 8%;
  width: 84%;
  height: 24%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 10% 70%, rgba(255, 138, 28, 0.62) 0 5%, transparent 6%),
    radial-gradient(ellipse at 17% 76%, rgba(255, 138, 28, 0.5) 0 4%, transparent 5%),
    radial-gradient(ellipse at 84% 72%, rgba(255, 138, 28, 0.54) 0 5%, transparent 6%),
    radial-gradient(ellipse at 92% 78%, rgba(255, 138, 28, 0.44) 0 4%, transparent 5%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.22), transparent 58%);
  filter: blur(1px);
}

.halloween-image-frame-fallback-pumpkins {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 245, 204, 0.62) 0 7%, rgba(255, 245, 204, 0.08) 8% 17%, transparent 18%),
    radial-gradient(ellipse at 50% 76%, rgba(255, 128, 16, 0.44), transparent 38%),
    linear-gradient(180deg, #10061c 0%, #210917 54%, #07020a 100%);
}

.halloween-image-frame-fallback-pumpkins::before {
  right: 2%;
  bottom: -8%;
  left: 2%;
  height: 62%;
  background:
    radial-gradient(ellipse at 19% 62%, rgba(255, 190, 74, 0.98) 0 11%, rgba(224, 85, 10, 0.96) 12% 19%, transparent 20%),
    radial-gradient(ellipse at 37% 52%, rgba(255, 171, 51, 0.98) 0 15%, rgba(206, 66, 8, 0.97) 16% 25%, transparent 26%),
    radial-gradient(ellipse at 59% 56%, rgba(255, 148, 30, 0.98) 0 14%, rgba(179, 54, 8, 0.96) 15% 24%, transparent 25%),
    radial-gradient(ellipse at 79% 64%, rgba(255, 183, 63, 0.96) 0 10%, rgba(198, 71, 9, 0.95) 11% 18%, transparent 19%),
    linear-gradient(180deg, transparent 0 56%, rgba(3, 1, 7, 0.9) 57% 100%);
  filter: drop-shadow(0 0 30px rgba(255, 102, 12, 0.34));
}

.halloween-image-frame-fallback-pumpkins::after {
  right: 6%;
  bottom: 0;
  left: 6%;
  width: auto;
  height: 52%;
  border-radius: 0;
  background:
    radial-gradient(circle at 19% 52%, rgba(65, 18, 6, 0.86) 0 1.5%, transparent 1.8%),
    radial-gradient(circle at 24% 52%, rgba(65, 18, 6, 0.86) 0 1.5%, transparent 1.8%),
    radial-gradient(ellipse at 21.5% 62%, rgba(255, 222, 107, 0.66) 0 3%, transparent 3.4%),
    radial-gradient(circle at 36% 42%, rgba(55, 14, 5, 0.86) 0 1.7%, transparent 2%),
    radial-gradient(circle at 42% 42%, rgba(55, 14, 5, 0.86) 0 1.7%, transparent 2%),
    radial-gradient(ellipse at 39% 55%, rgba(255, 224, 113, 0.7) 0 4%, transparent 4.4%),
    radial-gradient(circle at 57% 47%, rgba(55, 14, 5, 0.86) 0 1.8%, transparent 2.1%),
    radial-gradient(circle at 63% 47%, rgba(55, 14, 5, 0.86) 0 1.8%, transparent 2.1%),
    radial-gradient(ellipse at 60% 59%, rgba(255, 220, 104, 0.64) 0 3.8%, transparent 4.2%),
    radial-gradient(ellipse at center, rgba(255, 191, 78, 0.18), transparent 58%);
  filter: none;
}

.halloween-section-header {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.halloween-faq-list {
  display: grid;
  gap: 14px;
}

.halloween-faq-item {
  overflow: hidden;
}

.halloween-faq-question {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 20px 58px 20px 24px;
  color: #fff8ee;
  cursor: pointer;
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
}

.halloween-faq-question::-webkit-details-marker {
  display: none;
}

.halloween-faq-question::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 28px;
  height: 28px;
  content: "+";
  border: 1px solid rgba(255, 179, 91, 0.44);
  border-radius: 50%;
  color: var(--halloween-orange-hot);
  line-height: 26px;
  text-align: center;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.halloween-faq-item[open] .halloween-faq-question::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

.halloween-faq-answer {
  padding: 0 24px 24px;
}

.halloween-more-section {
  padding-top: 16px;
}

.halloween-more-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 138, 28, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(18, 11, 31, 0.86);
}

.halloween-link-button {
  margin-top: 0;
  white-space: nowrap;
}

@keyframes halloween-bat-float {
  0% {
    translate: 0 0;
  }
  35% {
    translate: 42vw -22px;
  }
  70% {
    translate: 82vw 12px;
  }
  100% {
    translate: 118vw -10px;
  }
}

@keyframes halloween-fog-drift {
  from {
    transform: translateX(-3%);
  }
  to {
    transform: translateX(4%);
  }
}

@keyframes halloween-particle-rise {
  from {
    background-position: 0 0, 42px 58px;
  }
  to {
    background-position: 0 -180px, 42px -150px;
  }
}

@keyframes halloween-pumpkin-glow {
  0%,
  100% {
    filter: brightness(0.92);
  }
  50% {
    filter: brightness(1.08);
  }
}

@media (max-width: 860px) {
  .halloween-hero {
    min-height: 880px;
    padding: 80px 18px 64px;
  }

  body.halloween-fullscreen .halloween-hero {
    min-height: 100svh;
    padding: 74px 18px 42px;
    place-items: center;
  }

  .halloween-clock,
  .halloween-intro-grid,
  .halloween-more-card {
    grid-template-columns: 1fr;
  }

  .halloween-clock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }

  .halloween-more-card {
    align-items: start;
  }

  .halloween-link-button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  body.halloween-fullscreen .halloween-clock {
    max-width: 620px;
  }
}

@media (max-width: 560px) {
  .halloween-fallback-header,
  .halloween-fallback-footer {
    padding: 12px 18px;
  }

  .halloween-hero {
    min-height: 820px;
    padding: 68px 16px 56px;
  }

  body.halloween-fullscreen .halloween-hero {
    min-height: 100svh;
    padding: 68px 16px 34px;
  }

  .halloween-container {
    width: min(100% - 28px, 1120px);
  }

  .halloween-hero-title {
    margin-bottom: 24px;
    font-size: clamp(2.55rem, 11vw, 3.25rem);
    line-height: 1;
  }

  body.halloween-fullscreen .halloween-hero-title {
    font-size: clamp(2.5rem, 10.8vw, 3.35rem);
  }

  .halloween-hero-subtitle {
    font-size: 1rem;
  }

  .halloween-hero-date {
    margin: 16px 0 28px;
  }

  .halloween-clock {
    gap: 10px;
  }

  body.halloween-fullscreen .halloween-clock {
    gap: 10px;
  }

  .halloween-countdown-card {
    min-height: 120px;
    border-radius: 18px;
    padding: 20px 8px 16px;
  }

  body.halloween-fullscreen .halloween-countdown-card {
    min-height: clamp(118px, 27vw, 136px);
  }

  .halloween-button {
    margin-top: 32px;
    width: min(100%, 320px);
  }

  body.halloween-fullscreen .halloween-button {
    margin-top: 28px;
  }

  .halloween-house {
    right: -10px;
    bottom: 13%;
    opacity: 0.78;
  }

  .halloween-pumpkin-one {
    left: 3%;
  }

  .halloween-pumpkin-two {
    left: 20%;
  }

  .halloween-pumpkin-three {
    right: 4%;
  }

  .halloween-intro,
  .halloween-article,
  .halloween-faq-section,
  .halloween-more-section {
    padding: 52px 0;
  }

  .halloween-intro-copy,
  .halloween-quick-card,
  .halloween-article-header,
  .halloween-content-section,
  .halloween-more-card {
    padding: 22px;
    border-radius: 18px;
  }

  .halloween-fact {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .halloween-image-frame {
    border-radius: 18px;
  }

  .halloween-faq-question {
    padding: 18px 54px 18px 20px;
  }
}

@media (max-width: 560px) and (max-height: 720px) {
  body.halloween-fullscreen .halloween-hero {
    padding: 44px 14px 22px;
  }

  body.halloween-fullscreen .halloween-hero-actions {
    top: 12px;
    right: 12px;
    gap: 8px;
  }

  body.halloween-fullscreen .halloween-hero-action {
    width: 42px;
    height: 42px;
  }

  body.halloween-fullscreen .halloween-share-toast {
    top: 62px;
    right: 12px;
  }

  body.halloween-fullscreen .halloween-hero-title {
    margin-bottom: 12px;
    font-size: clamp(2.25rem, 8.8vw, 2.75rem);
    line-height: 0.98;
  }

  body.halloween-fullscreen .halloween-hero-subtitle {
    font-size: 0.92rem;
  }

  body.halloween-fullscreen .halloween-hero-date {
    margin: 8px 0 14px;
    font-size: 0.94rem;
  }

  body.halloween-fullscreen .halloween-clock {
    gap: 8px;
  }

  body.halloween-fullscreen .halloween-countdown-card {
    min-height: clamp(88px, 20vw, 104px);
    padding: 14px 8px 12px;
  }

  body.halloween-fullscreen .halloween-countdown-number {
    font-size: clamp(2.15rem, 8.8vw, 2.9rem);
  }

  body.halloween-fullscreen .halloween-countdown-label {
    margin-top: 8px;
    font-size: 0.68rem;
  }

  body.halloween-fullscreen .halloween-button {
    min-height: 46px;
    margin-top: 16px;
    padding: 0 20px;
  }
}

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

@supports not (backdrop-filter: blur(16px)) {
  .halloween-countdown-card {
    background: rgba(20, 9, 34, 0.92);
  }
}
