:root {
  /* Updated background color to match logo_croped.png */
  --bg-color: #F1EFEA; 
  --text-dark: #1E1E1E;
  --text-muted: #6B7280;
  --accent-red: #8B202E;
  --accent-red-hover: #731A26;
  --card-bg: #FFFFFF;
  --border-color: #E5E7EB;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}

.orbit-ring {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px dashed rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.countdown-container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 800px;
}

/* Logo Styling */
.brand-logo {
  max-width: 320px;
  height: auto;
  margin: 0 auto 2rem auto;
  display: block;
  /* Multiply blend mode handles slight variations between the image background and CSS background */
  mix-blend-mode: multiply; 
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 0.45rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.headline {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.accent-text {
  color: var(--accent-red);
}

.subheadline {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.timer-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.timer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-number {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  width: 78px;
  height: 82px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-red);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.timer-card:hover .timer-number {
  transform: translateY(-2px);
}

.timer-label {
  margin-top: 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.action-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.9rem 2.2rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--accent-red);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--accent-red-hover);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid #D1D5DB;
}

.btn-secondary:hover {
  background-color: #EAE6DF;
}

@media (min-width: 640px) {
  .timer-number {
    width: 105px;
    height: 110px;
    font-size: 2.8rem;
    border-radius: 26px;
  }
  .timer-grid {
    gap: 1.5rem;
  }
}