.fc27-countdown {
  position: relative;
  overflow: hidden;
  margin: 0 0 24px;
  padding: 26px 28px 20px;
  border: 1px solid rgba(211,255,0,.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 18%, rgba(211,255,0,.10), transparent 30%),
    radial-gradient(circle at 8% 110%, rgba(255,48,90,.08), transparent 34%),
    linear-gradient(135deg, rgba(16,24,34,.98), rgba(8,13,20,.98));
  box-shadow: 0 18px 55px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.025);
  display: grid;
  grid-template-columns: minmax(280px,.9fr) minmax(480px,1.25fr);
  gap: 22px 34px;
  align-items: center;
}

.fc27-countdown::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #d8ff19, #ff365f 52%, transparent 88%);
}

.fc27-countdown-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -110px;
  top: -155px;
  border-radius: 50%;
  background: rgba(216,255,25,.13);
  filter: blur(70px);
  pointer-events: none;
}

.fc27-countdown-copy,
.fc27-clock,
.fc27-countdown-foot { position: relative; z-index: 1; }

.fc27-countdown-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .13em;
  color: #d8ff19;
}

.fc27-countdown-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d8ff19;
  box-shadow: 0 0 0 5px rgba(216,255,25,.09), 0 0 18px rgba(216,255,25,.75);
}

.fc27-countdown h2 {
  margin: 0;
  max-width: 520px;
  color: #f7f9fc;
  font-size: clamp(27px, 3vw, 43px);
  line-height: .98;
  letter-spacing: -.04em;
}

.fc27-countdown-copy > p {
  margin: 11px 0 0;
  color: #91a7c0;
  font-size: 14px;
}

.fc27-countdown-copy > p strong { color: #fff; }

.fc27-early {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 10px;
  margin-top: 17px;
  padding: 10px 12px;
  width: fit-content;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  color: #9aacc0;
  font-size: 11px;
}

.fc27-early span {
  color: #ffcf4a;
  font-weight: 900;
  letter-spacing: .07em;
}
.fc27-early strong { color: #fff; }
.fc27-early small { color: #71859c; }
.fc27-early.is-live span { color: #d8ff19; }

.fc27-clock {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.fc27-timebox {
  min-width: 0;
  padding: 17px 8px 14px;
  text-align: center;
  border: 1px solid #26374a;
  border-radius: 17px;
  background: rgba(4,9,14,.72);
  box-shadow: inset 0 1px rgba(255,255,255,.025);
}

.fc27-timebox strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 4.2vw, 55px);
  font-variant-numeric: tabular-nums;
  line-height: .95;
  letter-spacing: -.045em;
  text-shadow: 0 0 22px rgba(216,255,25,.08);
}

.fc27-timebox:first-child strong { color: #d8ff19; }

.fc27-timebox span {
  display: block;
  margin-top: 8px;
  color: #71859c;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.fc27-separator {
  color: #43556a;
  font-size: 25px;
  font-weight: 900;
  transform: translateY(-7px);
}

.fc27-countdown-foot {
  grid-column: 1 / -1;
  padding-top: 2px;
}

.fc27-progress {
  width: 100%;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #0a1119;
  border: 1px solid rgba(255,255,255,.035);
}
.fc27-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff365f, #d8ff19);
  box-shadow: 0 0 14px rgba(216,255,25,.4);
  transition: width .5s ease;
}

.fc27-countdown-footcopy {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  color: #60758c;
  font-size: 10px;
}
.fc27-countdown-footcopy span:first-child { color: #91a7c0; }

.fc27-countdown.is-released {
  grid-template-columns: 1fr;
  text-align: center;
}
.fc27-countdown.is-released .fc27-countdown-copy { margin: 4px auto 0; }
.fc27-countdown.is-released .fc27-countdown-kicker { justify-content: center; }
.fc27-countdown.is-released .fc27-clock { display: none; }
.fc27-countdown.is-released .fc27-early { display: none; }
.fc27-countdown.is-released .fc27-countdown-foot { max-width: 720px; width: 100%; margin: 0 auto; }

@media (max-width: 900px) {
  .fc27-countdown {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 23px 20px 18px;
  }
  .fc27-countdown-foot { grid-column: 1; }
}

@media (max-width: 560px) {
  .fc27-countdown {
    margin-bottom: 18px;
    padding: 21px 14px 15px;
    border-radius: 20px;
  }
  .fc27-countdown h2 { font-size: 29px; }
  .fc27-countdown-copy > p { font-size: 12px; }
  .fc27-early { width: 100%; box-sizing: border-box; }
  .fc27-clock { gap: 5px; }
  .fc27-timebox { padding: 13px 4px 11px; border-radius: 13px; }
  .fc27-timebox strong { font-size: clamp(27px, 10vw, 40px); }
  .fc27-timebox span { margin-top: 6px; font-size: 7px; letter-spacing: .08em; }
  .fc27-separator { font-size: 18px; transform: translateY(-6px); }
  .fc27-countdown-footcopy { display: block; line-height: 1.5; }
  .fc27-countdown-footcopy span { display: block; }
}
