.zaed {
  --red: #8d1024;
  --dark: #181818;
  --soft: #f7f3f4;
  --moon-x: -118%;
  max-width: 900px;
  margin: 25px auto;
  color: var(--dark);
  font-family: inherit;
}
.zaed * {
  box-sizing: border-box;
}
.zaed-picker { padding:16px 18px; margin:0 0 12px; border:1px solid #ddd; border-left:5px solid var(--red); border-radius:6px; background:#fff; }
.zaed-picker label { display:block; margin-bottom:8px; font-weight:800; }
.zaed-picker > div { display:flex; gap:8px; }
.zaed-picker input, .zaed-picker select { min-width:0; flex:1 1 auto; min-height:46px; padding:10px 12px; border:1px solid #aaa; border-radius:4px; font:inherit; background:#fff; }
.zaed-picker button { flex:0 0 auto; min-height:46px; padding:10px 15px; border:0; border-radius:4px; background:var(--red); color:#fff; font:inherit; font-weight:800; cursor:pointer; }
.zaed-picker p { margin:8px 0 0; color:#666; font-size:13px; }
.zaed-picker--area { margin-bottom:18px; border-left-color:#777; }
.zaed-hero {
  background: linear-gradient(135deg, #710b1c, var(--red));
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 10px 28px rgba(55, 0, 10, 0.18);
  overflow: hidden;
}
.zaed-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.zaed-live span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #62e481;
  box-shadow: 0 0 0 5px rgba(98, 228, 129, 0.16);
  animation: zaedPulse 1.7s infinite;
}
.zaed-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.82;
  margin: 16px 0 5px;
}
.zaed-hero__main {
  display: block;
  margin-bottom: 22px;
}
.zaed-hero__copy {
  min-width: 0;
}
.zaed-hero h2 {
  color: #fff;
  font-size: clamp(25px, 5vw, 40px);
  line-height: 1.08;
  margin: 0 0 22px;
}
.zaed-phase {
  width: 100%;
  text-align: center;
}
.zaed-phase__sky {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 9px;
}
.zaed-phase__sun,
.zaed-phase__moon {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
}
.zaed-phase__sun {
  background: #ffd55a;
  box-shadow: 0 0 24px rgba(255, 219, 94, 0.75);
}
.zaed-phase__moon {
  background: #171717;
  transform: translateX(var(--moon-x));
  transition: transform 0.45s linear;
  box-shadow: inset -5px 0 10px rgba(255, 255, 255, 0.08);
}
.zaed-phase small {
  display: block;
  font-size: 11px;
  line-height: 1.2;
  color: #fff;
  opacity: 0.9;
}
.zaed-local-times {
  margin: 0 0 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}
.zaed-local-times > span { display:block; margin-bottom:5px; font-size:11px; font-weight:800; letter-spacing:.05em; text-transform:uppercase; opacity:.78; }
.zaed-local-times p { margin:0; line-height:1.45; }
.zaed-local-times small { display:block; margin-top:5px; color:#fff; opacity:.9; }
.zaed-next {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}
.zaed-next span {
  grid-column: 1/-1;
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.8;
}
.zaed-next b {
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.zaed-safety,
.zaed-note {
  border-left: 5px solid var(--red);
  background: var(--soft);
  padding: 16px 18px;
  margin: 18px 0;
  border-radius: 5px;
}
.zaed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0;
}
.zaed-actions a,
.zaed-actions button {
  appearance: none;
  border: 1px solid var(--red);
  background: #fff;
  color: var(--red);
  padding: 11px 13px;
  min-height: 44px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
}
.zaed-actions a:hover,
.zaed-actions button:hover {
  background: var(--red);
  color: #fff;
}
.zaed-note {
  font-size: 14px;
  border-color: #777;
  background: #f5f5f5;
}
.zaed-feed-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 15px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 10px;
  margin-top: 30px;
}
.zaed-feed-head h3 {
  margin: 0;
  font-size: 24px;
}
.zaed-feed-head span {
  font-size: 13px;
  color: #666;
  font-variant-numeric: tabular-nums;
}
.zaed-feed {
  position: relative;
}
.zaed-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 4px;
  border-bottom: 1px solid #ddd;
}
.zaed-item time {
  font-weight: 800;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.zaed-item h4 {
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 7px;
}
.zaed-item p {
  margin: 0;
  line-height: 1.58;
  overflow-wrap: anywhere;
}
.zaed-ad {
  min-height: 130px;
  margin: 24px 0;
  padding: 14px 8px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background: #fafafa;
  overflow: hidden;
}
.zaed-ad > span {
  display: block;
  margin-bottom: 10px;
  color: #777;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.zaed-ad .adsbygoogle {
  width: 100%;
}
.zaed-ad--before-feed { margin: 26px 0 18px; }
.zaed-ad.is-placeholder {
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px dashed #aaa;
}
.zaed-ad.is-placeholder p {
  margin: 0;
  color: #666;
  font-size: 13px;
}
.zaed-item--milestone,
.zaed-item--maximum,
.zaed-item--totality {
  border-left: 5px solid var(--red);
  padding-left: 14px;
  background: linear-gradient(90deg, var(--soft), #fff 70%);
}
.zaed-item--event {
  border-left: 5px solid #d49b22;
  padding-left: 14px;
  background: linear-gradient(90deg, #fff8e6, #fff 70%);
}
.zaed-item--urgent {
  border-left: 5px solid #e25438;
  padding-left: 14px;
}
.zaed-item.is-new {
  animation: zaedIn 0.65s ease both;
}
.zaed-empty {
  text-align: center;
  padding: 35px;
  color: #666;
}
.zaed-nearby,
.zaed-index {
  margin: 30px 0;
  padding: 20px;
  border: 1px solid #ded6d8;
  border-radius: 8px;
  background: #fff;
}
.zaed-nearby h2,
.zaed-index h2 { margin:0 0 10px; font-size:22px; }
.zaed-nearby__links,
.zaed-index__province p { margin:0; line-height:1.75; }
.zaed-nearby a,
.zaed-index a { color:var(--red); font-weight:700; text-decoration:none; }
.zaed-nearby a:hover,
.zaed-index a:hover { text-decoration:underline; }
.zaed-nearby__links span,
.zaed-index__province span { color:#999; }
.zaed-nearby__hint { margin:14px 0 0; padding-top:14px; border-top:1px solid #e5dfe0; line-height:1.55; }
.zaed-index summary { color:var(--red); font-weight:800; cursor:pointer; }
.zaed-index[open] summary { margin-bottom:22px; }
.zaed-index__province + .zaed-index__province { margin-top:25px; }
.zaed-beta {
  border: 2px dashed #7557a5;
  background: #f6f1ff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 6px;
}
.zaed-beta__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.zaed-beta label {
  display: flex;
  align-items: center;
  gap: 6px;
}
.zaed-beta select,
.zaed-beta button {
  padding: 9px;
  min-height: 42px;
  border: 1px solid #777;
  border-radius: 4px;
  background: #fff;
}
.zaed.is-totality .zaed-hero {
  background: radial-gradient(circle at 78% 25%, #555 0, #111 22%, #030303 55%);
}
.zaed.is-totality .zaed-live span {
  background: #fff;
  box-shadow: 0 0 18px 5px #fff;
}
.zaed.is-totality .zaed-safety {
  background: #191919;
  color: #fff;
  border-color: #fff;
}
.zaed.is-totality .zaed-phase__sun {
  background: #0b0b0b;
  box-shadow:
    0 0 5px 3px #fff,
    0 0 22px 8px rgba(255, 255, 255, 0.7);
}
.zaed.is-totality .zaed-phase__moon {
  background: #050505;
}
.zaed-reminder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #d8c1c6;
  border-left: 5px solid var(--red);
  background: #fff;
  padding: 17px 18px;
  margin: 18px 0;
  border-radius: 5px;
}
.zaed-reminder p {
  margin: 4px 0 0;
  line-height: 1.45;
}
.zaed-reminder button {
  appearance: none;
  flex: 0 0 auto;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  padding: 11px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.zaed-reminder button:disabled {
  background: #777;
  cursor: default;
}
.zaed-reminder.is-active {
  border-color: #2b8550;
  background: #f0faf4;
}
.zaed-reminder.is-active button {
  background: #2b8550;
}
.zaed-alert[hidden] {
  display: none;
}
.zaed-alert {
  position: fixed;
  z-index: 999999;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(620px, calc(100% - 28px));
  padding: 18px 20px;
  background: #151515;
  color: #fff;
  border-left: 6px solid #ffd55a;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
}
.zaed-alert.is-urgent {
  background: var(--red);
  border-color: #fff;
}
.zaed-alert p {
  margin: 4px 0 0;
  line-height: 1.45;
}
.zaed-alert button {
  appearance: none;
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.zaed-seo {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 2px solid var(--red);
}
.zaed-seo h2 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.25;
}
.zaed-seo h2:not(:first-child) {
  margin-top: 30px;
}
.zaed-seo p {
  margin: 0 0 16px;
  line-height: 1.65;
}
.zaed-seo a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.zaed-seo-box {
  background: #f7f3f4;
  border-left: 5px solid var(--red);
  padding: 18px;
  margin: 25px 0;
  border-radius: 5px;
}
.zaed-seo-box p {
  margin: 0;
}
.zaed-related {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  padding: 22px;
  margin: 35px 0;
  border-radius: 8px;
}
.zaed-related p {
  margin: 0 0 8px;
}
.zaed-related p:last-child {
  margin-bottom: 0;
}
@keyframes zaedPulse {
  50% {
    opacity: 0.45;
    transform: scale(0.85);
  }
}
@keyframes zaedIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 760px) {
  .zaed-picker { padding:14px; }
  .zaed-picker > div { display:grid; grid-template-columns:minmax(0,1fr) auto; }
  .zaed-picker input, .zaed-picker select { width:100%; }
  .zaed {
    width: 100%;
    margin: 15px auto;
  }
  .zaed-hero {
    padding: 20px 16px;
    border-radius: 6px;
  }
  .zaed-kicker {
    font-size: 10px;
    line-height: 1.35;
    margin-top: 14px;
  }
  .zaed-hero__main {
    display: block;
    margin-bottom: 18px;
  }
  .zaed-hero h2 {
    font-size: clamp(23px, 7vw, 31px);
    margin-bottom: 18px;
  }
  .zaed-phase {
    width: 100%;
  }
  .zaed-phase__sky {
    width: 132px;
    height: 132px;
  }
  .zaed-phase__sun,
  .zaed-phase__moon {
    inset: 9px;
  }
  .zaed-next {
    grid-template-columns: 1fr;
    padding: 13px;
  }
  .zaed-next b {
    text-align: left;
    margin-top: 5px;
    font-size: 16px;
  }
  .zaed-safety,
  .zaed-note {
    padding: 14px 15px;
    margin: 14px 0;
  }
  .zaed-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin: 14px 0;
  }
  .zaed-actions > * {
    width: 100%;
    text-align: center;
  }
  .zaed-feed-head {
    display: block;
    margin-top: 24px;
  }
  .zaed-feed-head h3 {
    font-size: 22px;
  }
  .zaed-feed-head span {
    display: block;
    margin-top: 5px;
  }
  .zaed-item {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 17px 2px;
  }
  .zaed-item time {
    font-size: 14px;
  }
  .zaed-item h4 {
    font-size: 18px;
  }
  .zaed-item p {
    font-size: 15px;
    line-height: 1.52;
  }
  .zaed-ad {
    min-height: 280px;
    margin: 22px 0;
    padding: 12px 0;
  }
  .zaed-item--milestone,
  .zaed-item--maximum,
  .zaed-item--totality,
  .zaed-item--event,
  .zaed-item--urgent {
    padding-left: 12px;
    padding-right: 5px;
  }
  .zaed-beta__row,
  .zaed-beta label {
    display: grid;
    grid-template-columns: 1fr;
  }
  .zaed-beta select,
  .zaed-beta button {
    width: 100%;
  }
  .zaed-reminder {
    display: block;
    padding: 15px;
  }
  .zaed-reminder button {
    width: 100%;
    margin-top: 13px;
  }
  .zaed-alert {
    bottom: 10px;
    padding: 15px 16px;
  }
  .zaed-seo {
    margin-top: 34px;
    padding-top: 22px;
  }
  .zaed-seo h2 {
    font-size: 22px;
  }
  .zaed-seo p {
    font-size: 15px;
    line-height: 1.58;
  }
  .zaed-nearby, .zaed-index { margin:24px 0; padding:16px; }
  .zaed-nearby h2, .zaed-index h2 { font-size:20px; }
  .zaed-nearby__links, .zaed-index__province p { font-size:14px; line-height:1.8; }
}
@media (max-width: 390px) {
  .zaed-hero__main {
    display: block;
  }
  .zaed-phase {
    width: 100%;
  }
  .zaed-phase__sky {
    width: 116px;
    height: 116px;
  }
  .zaed-phase small {
    font-size: 10px;
  }
  .zaed-hero h2 {
    font-size: 23px;
  }
}
