.landing-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.landing-nav {
  background: rgba(12, 12, 15, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.landing-nav .navbar-brand {
  color: var(--text);
  font-size: 1.05rem;
}

.landing-nav .navbar-brand i {
  color: var(--accent);
}

.landing-hero {
  border-bottom: 1px solid var(--border);
}

.text-gradient {
  background: linear-gradient(120deg, #a855f7, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-lead {
  color: var(--muted);
  max-width: 36rem;
}

.landing-stat {
  display: flex;
  flex-direction: column;
}

.landing-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.landing-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.landing-risers-panel {
  box-shadow: var(--shadow);
}

.landing-risers-date {
  color: var(--muted);
  font-size: 0.85rem;
}

.landing-riser-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.landing-riser-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.landing-riser-link:hover {
  border-color: var(--accent);
  transform: translateX(2px);
  color: var(--text);
}

.landing-riser-art {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.landing-riser-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.landing-riser-name {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-riser-rank {
  font-size: 0.8rem;
  color: var(--muted);
}

.landing-risers-more {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.landing-risers-more:hover {
  text-decoration: underline;
  color: var(--accent);
}

.landing-risers-empty p {
  color: var(--muted);
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.feature-icon-rise {
  background: rgba(34, 197, 94, 0.15);
  color: var(--rise);
}

.feature-icon-new {
  background: rgba(56, 189, 248, 0.15);
  color: var(--new);
}

.feature-icon-crown {
  background: rgba(250, 204, 21, 0.15);
  color: #facc15;
}

.feature-icon-recap {
  background: var(--accent-soft);
  color: var(--accent);
}

.landing-countries {
  border-top: 1px solid var(--border);
}

.country-chip {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.15s ease;
}

.country-chip:hover {
  border-color: var(--accent);
  color: var(--text);
}

.landing-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.landing-footer i {
  color: var(--accent);
}

.landing-footer-note {
  font-size: 0.8rem;
}
