/* CraftAttack.me - Season Page */

.season-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}

/* Single column layout for all-seasons page */
.section > .container > .season-card {
  margin-bottom: 16px;
}

.season-card {
  background: var(--color-bg-card);
  border: 2px solid var(--mc-border-light);
  border-top-color: var(--mc-highlight);
  border-left-color: var(--mc-highlight);
  border-bottom-color: var(--mc-border-dark);
  border-right-color: var(--mc-border-dark);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.season-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.4); border-color: rgba(255,152,0,0.2); }
.season-card[id] { cursor: pointer; }

.season-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.season-card.current::before { background: var(--color-success); }
.season-card.upcoming::before {
  background: var(--color-primary);
  animation: pulse-bar 2s ease-in-out infinite;
}
@keyframes pulse-bar { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

.season-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.season-card-header h2 { font-size: 1.3rem; color: var(--color-primary); }

.season-card-facts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--mc-border-dark);
  border: 1px solid var(--mc-border-dark);
  margin-bottom: 20px;
}
.season-fact {
  padding: 12px 14px;
  background: rgba(13,10,6,0.6);
}
.season-fact-label {
  font-size: 0.72rem; color: var(--color-text-muted);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px;
}
.season-fact-value { font-size: 0.9rem; color: var(--color-text); font-weight: 600; }

.season-card-description p { font-size: 0.9rem; line-height: 1.6; }

.season-teaser { text-align: center; padding: 32px 16px; }
.season-teaser-icon { font-size: 2.2rem; margin-bottom: 14px; }
.season-teaser h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--color-primary); }
.season-teaser p { font-size: 0.9rem; max-width: 360px; margin: 0 auto 20px; }

/* Timeline */
.timeline-section { padding: 64px 0; }

.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 32px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--mc-border-light), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 24px;
}
.timeline-dot {
  position: absolute;
  left: -27px; top: 8px;
  width: 10px; height: 10px;
  background: var(--mc-border-dark);
  border: 2px solid var(--mc-border-light);
  z-index: 1;
}
.timeline-item.active .timeline-dot {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 0 8px rgba(255,152,0,0.4);
}
.timeline-item.upcoming-dot .timeline-dot {
  border-style: dashed;
  border-color: var(--color-accent);
}

.timeline-content {
  background: var(--color-bg-card);
  border: 2px solid var(--mc-border-light);
  border-top-color: var(--mc-highlight);
  border-left-color: var(--mc-highlight);
  border-bottom-color: var(--mc-border-dark);
  border-right-color: var(--mc-border-dark);
  padding: 16px 20px;
}
.timeline-content h4 { font-size: 0.95rem; margin-bottom: 4px; }
.timeline-content p { font-size: 0.85rem; }
.timeline-content .badge { margin-bottom: 6px; display: inline-flex; }

@media (max-width: 768px) {
  .season-cards { grid-template-columns: 1fr; gap: 16px; }
  .season-card { padding: 20px; }
  .season-card-facts { grid-template-columns: 1fr; }
}
