:root {
  --bg-dark: #09090b;
  --bg-card: #18181b;
  --bg-card-hover: #27272a;
  --border: #3f3f46;
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  
  /* Status Colors */
  --accent-gold: #fbbf24;    /* History/Church */
  --accent-blue: #3b82f6;    /* Future/Renewal */
  --accent-red: #f43f5e;     /* Deadline/Alert */
  --accent-green: #10b981;   /* Support/Open */
  
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 12px;
  --shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-main);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* Typography */
h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge.gold { background: rgba(251, 191, 36, 0.15); color: var(--accent-gold); border: 1px solid rgba(251, 191, 36, 0.3); }
.badge.blue { background: rgba(59, 130, 246, 0.15); color: var(--accent-blue); border: 1px solid rgba(59, 130, 246, 0.3); }
.badge.red { background: rgba(244, 63, 94, 0.15); color: var(--accent-red); border: 1px solid rgba(244, 63, 94, 0.3); }
.badge.green { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); border: 1px solid rgba(16, 185, 129, 0.3); }

/* Header */
.header-section {
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* Timeline Layout */
.timeline-section {
  position: relative;
  margin-bottom: 80px;
}

.timeline-track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent-gold) 0%, var(--border) 40%, var(--accent-red) 100%);
  transform: translateX(-50%);
  border-radius: 4px;
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  width: 45%;
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: #52525b;
}

/* Connectors */
.timeline-dot {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--bg-dark);
  border: 4px solid var(--border);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.timeline-item.gold .timeline-dot { border-color: var(--accent-gold); box-shadow: 0 0 15px rgba(251, 191, 36, 0.4); }
.timeline-item.blue .timeline-dot { border-color: var(--accent-blue); box-shadow: 0 0 15px rgba(59, 130, 246, 0.4); }
.timeline-item.red .timeline-dot { border-color: var(--accent-red); box-shadow: 0 0 15px rgba(244, 63, 94, 0.4); }

/* Alternating Layout */
.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
}

/* Specific styling for the Deadline Card */
.timeline-content.highlight-red {
  border-color: var(--accent-red);
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.1) 0%, var(--bg-card) 100%);
}

.big-date {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-red);
  display: block;
  margin: 10px 0;
}

/* Support Grid */
.support-section {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--border);
  margin-bottom: 60px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.support-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.icon-placeholder {
  width: 48px;
  height: 48px;
  background: var(--bg-card-hover);
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.gold-icon { color: var(--accent-gold); background: rgba(251, 191, 36, 0.1); }
.green-icon { color: var(--accent-green); background: rgba(16, 185, 129, 0.1); }
.blue-icon { color: var(--accent-blue); background: rgba(59, 130, 246, 0.1); }
.red-icon { color: var(--accent-red); background: rgba(244, 63, 94, 0.1); }

/* Future Vision */
.vision-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
  border-radius: 24px;
  padding: 60px;
  margin-bottom: 40px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.vision-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.vision-image-placeholder {
  width: 400px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255,255,255,0.2);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-blue);
  color: white;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.highlight-text {
  color: var(--accent-gold);
  font-weight: 700;
}

/* Vision Text Styles */
.vision-title {
  color: white;
  margin-top: 16px;
}

.vision-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 24px;
}

.priority-box {
  background: rgba(0,0,0,0.2);
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-gold);
}

.priority-title {
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.priority-desc {
  margin: 0;
  font-size: 0.95rem;
}

.placeholder-text {
  color: var(--text-muted);
  font-weight: 500;
}

/* Utilities */
.text-center { text-align: center; }
.mb-32 { margin-bottom: 32px; }
.text-secondary { color: var(--text-secondary); }

/* Mobile Responsive */
@media (max-width: 768px) {
  .timeline-track { left: 20px; }
  .timeline-item { flex-direction: column !important; align-items: flex-start; padding-left: 50px; margin-bottom: 40px; }
  .timeline-content { width: 100%; text-align: left !important; }
  .timeline-dot { left: 20px; }
  
  .grid-3 { grid-template-columns: 1fr; }
  
  .vision-section { flex-direction: column; padding: 32px; }
  .vision-image-placeholder { width: 100%; margin-top: 32px; height: 200px; }
  
  h1 { font-size: 2.2rem; }
}
