/* Hero Section */
.hero-upcoming {
  padding: 80px 0 40px;
  background: radial-gradient(circle at top right, #1a1a1a, var(--gr-black));
}

.fw-black {
  font-weight: 900;
}

/* Timeline Section */
.timeline-month {
  position: sticky;
  top: 90px;
  z-index: 10;
  background: var(--gr-black);
  padding: 15px 0;
  border-bottom: 1px solid var(--gr-border);
  margin-bottom: 30px;
}

.month-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
}

.month-title::after {
  content: "";
  height: 2px;
  flex-grow: 1;
  background: var(--gr-border);
}

/* Game Launch Card */
.launch-card {
  background: var(--gr-card-bg);
  border: 1px solid var(--gr-border);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
}

.launch-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.launch-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #222;
  overflow: hidden;
}

.launch-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #111, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 3rem;
}

.launch-date-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  color: black;
  padding: 5px 15px;
  border-radius: 100px;
  font-weight: 900;
  font-size: 0.75rem;
  z-index: 2;
}

.launch-content {
  padding: 20px;
}

.platform-pill {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border: 1px solid var(--gr-border);
  border-radius: 6px;
  color: var(--gr-muted);
  margin-right: 5px;
}

.launch-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 10px 0 5px;
}

.launch-studio {
  color: var(--gr-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
