/* style.css - Complete styles for the countdown redirect page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: #e8e9e5;
  color: #1e1e1e;
  text-align: center;
  padding: 1.5rem;
}

.redirect-card {
  max-width: 480px;
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05), 0 4px 10px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.03);
}

.circle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem auto;
  width: 90px;
  height: 90px;
}

.circle {
  position: relative;
  width: 90px;
  height: 90px;
}

.circle svg {
  transform: rotate(-90deg);
}

.circle .circle-bg {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 5;
}

.circle .circle-progress {
  fill: none;
  stroke: #5c7acc;
  stroke-width: 5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease;
}

.circle .center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #1e1e1e;
}

h1 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.highlight {
  color: #4a64b0;
  word-break: break-all;
  font-weight: 500;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5d646f;
  margin: 0.5em 0 1em;
}

.fallback-link {
  display: inline-block;
  margin-top: 0.5rem;
  background: #364d94;
  color: white;
  padding: 0.6rem 1.6rem;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: none;
  transition: background 0.2s;
}

.fallback-link:hover {
  background: #364d94;
  opacity: 0.9;
  border-bottom: none;
}

.meta-note {
  font-size: 0.8rem;
  color: #777;
  margin-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 1rem;
}
