.levels {
  padding: 7rem var(--container-px);
  background: linear-gradient(150deg, #0e0101 0%, #2a0303 40%, #440505 100%);
  position: relative;
  overflow: hidden;
}

.levels::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,199,89,0.07) 0%, transparent 70%);
  bottom: -150px; left: -150px;
  pointer-events: none;
}

.levels .section__title { color: #fff; }
.levels .section__eyebrow { color: rgba(255,255,255,0.5); }

/* Barra */
.levels__bar-track {
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 2rem 0 2.5rem;
  overflow: hidden;
}

.levels__bar-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.3), var(--color-accent-1));
  border-radius: 2px;
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready .levels__bar-fill { width: 0; }
.js-ready .levels__bar-fill.is-visible { width: 100%; }

/* Cards minimalistes */
.levels__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.level-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.25rem 1.25rem;
  text-align: center;
  min-width: 110px;
  flex: 1 1 110px;
  max-width: 165px;
  transition: background 0.22s, transform 0.22s;
}

.level-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}

.level-card__icon { font-size: 1.4rem; display: block; margin-bottom: 0.4rem; }

.level-card__rank {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.level-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.level-card--master {
  background: rgba(255,199,89,0.1);
  border-color: rgba(255,199,89,0.35);
}

.level-card--master .level-card__rank { color: rgba(255,199,89,0.7); }
.level-card--master .level-card__name { color: var(--color-accent-1); }

/* 1979 — minimalista */
.levels__1979 {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 2rem;
  background: rgba(255,199,89,0.07);
  border: 1px solid rgba(255,199,89,0.2);
  border-radius: 16px;
}

.levels__1979-year {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-accent-1);
  letter-spacing: -0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.levels__1979-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.levels__1979-text strong { color: rgba(255,255,255,0.9); }
