#time215App {
  --t215-primary: #2563eb;
  --t215-primary-dark: #1746c8;
  --t215-primary-light: #eff6ff;
  --t215-cyan: #06b6d4;
  --t215-text: #0f172a;
  --t215-body: #475569;
  --t215-muted: #64748b;
  --t215-border: #e2e8f0;
  --t215-bg: #f8fafc;
  --t215-white: #ffffff;

  max-width: 1080px;
  margin: 42px auto;
  padding: 0 18px;
  font-family: inherit;
  color: var(--t215-text);
  line-height: 1.7;
}

#time215App *,
#time215App *::before,
#time215App *::after {
  box-sizing: border-box;
}

#time215App h2,
#time215App h3,
#time215App p {
  margin-top: 0;
}

#time215App h2 {
  color: var(--t215-text);
  line-height: 1.2;
}

.t215-hero {
  position: relative;
  overflow: hidden;
  padding: 55px 48px 42px;
  border: 1px solid #dbe5f1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 10%, rgba(37,99,235,.10), transparent 26%),
    radial-gradient(circle at 90% 15%, rgba(6,182,212,.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow:
    0 25px 70px rgba(15,23,42,.08),
    0 3px 10px rgba(15,23,42,.03);
  text-align: center;
}

.t215-hero::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  left: -100px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(37,99,235,.05);
}

.t215-top-badge,
.t215-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--t215-primary);
}

.t215-top-badge {
  margin-bottom: 17px;
  padding: 8px 15px;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: rgba(239,246,255,.95);
}

.t215-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34,197,94,.12);
}

.t215-hero > h1 {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--t215-text);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -.035em;
}

.t215-hero-sub {
  max-width: 750px;
  margin: 0 auto 32px;
  color: var(--t215-body);
  font-size: 17px;
}

.t215-main-answer {
  position: relative;
  max-width: 800px;
  margin: 0 auto 27px;
  padding: 30px 25px;
  border: 1px solid #bfdbfe;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(239,246,255,.98), rgba(245,250,255,.95));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.t215-answer-label {
  margin-bottom: 7px;
  color: var(--t215-muted);
  font-size: 14px;
  font-weight: 700;
}

.t215-answer-text {
  color: var(--t215-primary);
  font-size: clamp(25px, 4vw, 39px);
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.t215-next-target {
  margin-top: 10px;
  color: var(--t215-muted);
  font-size: 14px;
}

.t215-countdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.t215-count-card {
  position: relative;
  padding: 25px 15px 22px;
  border: 1px solid var(--t215-border);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
}

.t215-count-icon {
  position: absolute;
  top: 12px;
  right: 13px;
  color: #94a3b8;
  font-size: 15px;
}

.t215-count-card strong {
  display: block;
  color: var(--t215-primary);
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.t215-count-card span {
  display: block;
  margin-top: 10px;
  color: var(--t215-muted);
  font-size: 14px;
  font-weight: 700;
}

.t215-progress-box {
  max-width: 800px;
  margin: 0 auto 26px;
  padding: 20px;
  border: 1px solid var(--t215-border);
  border-radius: 16px;
  background: rgba(248,250,252,.86);
  text-align: left;
}

.t215-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 11px;
  color: var(--t215-text);
  font-size: 14px;
  font-weight: 700;
}

.t215-progress-head strong {
  color: var(--t215-primary);
}

.t215-progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5eaf1;
}

.t215-progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--t215-primary), var(--t215-cyan));
  transition: width .5s ease;
}

.t215-progress-box p {
  margin: 9px 0 0;
  color: var(--t215-muted);
  font-size: 12px;
}

.t215-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.t215-info-card {
  padding: 18px 12px;
  border: 1px solid #edf0f4;
  border-radius: 15px;
  background: rgba(248,250,252,.9);
}

.t215-info-icon {
  margin-bottom: 5px;
  font-size: 19px;
}

.t215-info-card span {
  display: block;
  color: var(--t215-muted);
  font-size: 12px;
}

.t215-info-card strong {
  display: block;
  margin-top: 2px;
  color: var(--t215-text);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.t215-section,
.t215-status-section {
  margin-top: 28px;
  border: 1px solid var(--t215-border);
  border-radius: 24px;
  background: var(--t215-white);
  box-shadow: 0 12px 40px rgba(15,23,42,.04);
}

.t215-section {
  padding: 38px;
}

.t215-section-heading {
  margin-bottom: 19px;
}

.t215-section-heading h2 {
  margin: 7px 0 0;
  font-size: clamp(27px, 4vw, 36px);
  letter-spacing: -.025em;
}

.t215-section > p {
  color: var(--t215-body);
}

.t215-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.t215-stat-card {
  padding: 25px 20px;
  border: 1px solid #dbeafe;
  border-radius: 17px;
  background: linear-gradient(180deg,#f8fbff,#fff);
}

.t215-stat-title {
  margin-bottom: 5px;
  color: var(--t215-muted);
  font-size: 13px;
  font-weight: 700;
}

.t215-stat-card strong {
  display: block;
  color: var(--t215-primary);
  font-size: 31px;
  line-height: 1.2;
}

.t215-stat-card span {
  color: var(--t215-muted);
  font-size: 12px;
}

.t215-status-section {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px 34px;
  background:
    linear-gradient(135deg,#f8fbff,#ffffff);
}

.t215-status-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: #eff6ff;
  font-size: 31px;
}

.t215-status-content h2 {
  margin: 4px 0 6px;
  font-size: 27px;
}

.t215-status-content p {
  margin: 0;
  color: var(--t215-body);
}

.t215-status-badge {
  padding: 8px 14px;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  background: #f0fdf4;
  color: #15803d;
  font-size: 13px;
  font-weight: 800;
}

.t215-example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 23px;
}

.t215-example-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--t215-border);
  border-radius: 14px;
  background: #fbfdff;
}

.t215-example-card span {
  color: var(--t215-muted);
  font-size: 14px;
}

.t215-example-card strong {
  color: var(--t215-text);
  font-size: 15px;
}

.t215-soft-section {
  background:
    radial-gradient(circle at 90% 0, rgba(37,99,235,.07), transparent 30%),
    #f8fafc;
}

.t215-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 24px;
}

.t215-feature {
  padding: 24px;
  border: 1px solid var(--t215-border);
  border-radius: 17px;
  background: #fff;
}

.t215-feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  border-radius: 12px;
  background: #eff6ff;
  color: var(--t215-primary);
  font-size: 13px;
  font-weight: 850;
}

.t215-feature h3 {
  margin-bottom: 8px;
  color: var(--t215-text);
  font-size: 17px;
}

.t215-feature p {
  margin-bottom: 0;
  color: var(--t215-body);
  font-size: 14px;
}

.t215-related-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.t215-related-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 21px;
  border: 1px solid var(--t215-border);
  border-radius: 15px;
  background: #fff;
  text-decoration: none !important;
  transition: .22s ease;
}

.t215-related-card span {
  display: block;
  color: var(--t215-muted);
  font-size: 12px;
}

.t215-related-card strong {
  display: block;
  margin-top: 2px;
  color: var(--t215-text);
  font-size: 16px;
}

.t215-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--t215-primary);
  font-size: 19px;
}

.t215-related-card:hover {
  border-color: #93c5fd;
  transform: translateY(-2px);
  box-shadow: 0 9px 25px rgba(37,99,235,.08);
}

.t215-faq {
  margin-top: 22px;
}

.t215-faq details {
  margin-bottom: 11px;
  overflow: hidden;
  border: 1px solid var(--t215-border);
  border-radius: 15px;
  background: #fff;
}

.t215-faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 19px 20px;
  color: var(--t215-text);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.t215-faq summary::-webkit-details-marker {
  display: none;
}

.t215-faq-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--t215-primary);
  font-size: 20px;
  font-weight: 500;
}

.t215-faq details[open] .t215-faq-plus {
  transform: rotate(45deg);
}

.t215-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--t215-body);
}

@media (max-width: 780px) {

  #time215App {
    margin: 22px auto;
    padding: 0 11px;
  }

  .t215-hero {
    padding: 35px 18px 25px;
    border-radius: 20px;
  }

  .t215-countdown-grid {
    gap: 8px;
  }

  .t215-count-card {
    padding: 21px 5px 17px;
  }

  .t215-count-card strong {
    font-size: 37px;
  }

  .t215-info-grid,
  .t215-quick-stats,
  .t215-example-grid,
  .t215-feature-grid {
    grid-template-columns: 1fr;
  }

  .t215-section {
    padding: 26px 19px;
    border-radius: 19px;
  }

  .t215-status-section {
    grid-template-columns: auto 1fr;
    padding: 24px 19px;
  }

  .t215-status-badge {
    grid-column: 1 / -1;
    width: max-content;
  }

}

@media (max-width: 480px) {

  .t215-countdown-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .t215-count-card span {
    font-size: 11px;
  }

  .t215-count-card strong {
    font-size: 31px;
  }

  .t215-main-answer {
    padding: 23px 14px;
  }

  .t215-answer-text {
    font-size: 25px;
  }

}