* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
  min-height: 100vh;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
}

header {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

header .container {
  padding: 1.5rem 1rem;
  text-align: center;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-badge {
  display: inline-block;
  background: #dc2626;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transition: transform 0.2s;
  cursor: default;
}

.hero-badge:hover {
  transform: scale(1.05);
}

.hero-text {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .hero-text {
    font-size: 6rem;
  }
}

.card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-content {
  padding: 1.5rem;
}

.card p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #374151;
}

.card strong {
  color: #dc2626;
}

.delay-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  margin-top: 1rem;
}

.delay-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #dc2626;
}

.delay-time {
  font-size: 1.25rem;
  font-weight: bold;
  color: #b91c1c;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.phase2-title {
  margin-top: 2rem;
}

.delay-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  transition: all 0.2s;
  overflow: hidden;
}

.delay-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.delay-header-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  transition: background-color 0.2s;
}

.delay-header-btn:hover {
  background: #f9fafb;
}

.delay-header-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.phase2-badge {
  font-size: 0.875rem;
  font-weight: normal;
  color: #6b7280;
}

.chevron {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s;
}

.chevron.open {
  transform: rotate(180deg);
}

.delay-content {
  display: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.delay-content.open {
  display: block;
}

.links-list {
  list-style: none;
}

.links-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.external-icon {
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  color: #9ca3af;
}

.links-list a {
  color: #2563eb;
  text-decoration: none;
  font-size: 0.875rem;
  word-break: break-all;
  transition: color 0.2s;
}

.links-list a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

footer {
  background: white;
  border-top: 1px solid #e5e7eb;
  margin-top: 4rem;
  padding: 1.5rem 0;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
}

.clock-icon {
  color: #dc2626;
}

.calendar-icon {
  color: #2563eb;
}
