/* ========================================
   PASS 2: WINNERS PAGE VISUAL POLISH
   Premium legend display, card styling
   ======================================== */

/* ========================================
   1. LEGENDS GRID STYLING
   ======================================== */

.legends-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.legend-card {
  background: rgba(31, 31, 36, 0.6);
  border: 1px solid rgba(139, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.legend-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 0, 0, 0.3);
  box-shadow: 0 8px 24px rgba(139, 0, 0, 0.15);
  background: rgba(31, 31, 36, 0.8);
}

.legend-card-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, rgba(31, 31, 36, 0.6), rgba(13, 13, 15, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1a8;
  font-size: 3rem;
}

.legend-card-content {
  padding: 1.5rem;
}

.legend-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 0.5rem;
}

.legend-card-award {
  font-size: 0.875rem;
  color: #8B0000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legend-card-description {
  font-size: 0.95rem;
  color: #d4d4d8;
  line-height: 1.6;
}

/* ========================================
   2. SECTION TITLE STYLING
   ======================================== */

.legends-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.legends-section-title h2 {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800;
  color: #f5f5f5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========================================
   3. HERO SECTION STYLING
   ======================================== */

.winners-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 15, 0.95),
    rgba(20, 5, 5, 0.9)
  );
  padding: 4rem 2rem;
}

.winners-hero-content {
  text-align: center;
  max-width: 900px;
}

.winners-hero h1 {
  font-size: clamp(2.5rem, 10vw, 4rem);
  font-weight: 800;
  color: #f5f5f5;
  margin-bottom: 1.5rem;
}

.winners-hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #d4d4d8;
  line-height: 1.6;
}

/* ========================================
   4. UPCOMING LEGENDS SECTION
   ======================================== */

.upcoming-legends-section {
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 15, 0.9),
    rgba(13, 13, 15, 0.95)
  );
  padding: 4rem 2rem;
}

.upcoming-legends-title {
  text-align: center;
  margin-bottom: 2rem;
}

.upcoming-legends-title h2 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: #f5f5f5;
}

.upcoming-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.upcoming-card {
  background: rgba(31, 31, 36, 0.5);
  border: 1px solid rgba(139, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.upcoming-card:hover {
  border-color: rgba(139, 0, 0, 0.25);
  background: rgba(31, 31, 36, 0.7);
}

.upcoming-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.upcoming-card-title {
  font-weight: 700;
  color: #f5f5f5;
  margin-bottom: 0.5rem;
}

.upcoming-card-description {
  font-size: 0.9rem;
  color: #d4d4d8;
  line-height: 1.5;
}

/* ========================================
   5. BACKGROUND STYLING
   ======================================== */

.winners-page {
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 15, 0.95),
    rgba(13, 13, 15, 0.9)
  );
}

/* ========================================
   6. RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
  .legends-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .legends-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .winners-hero {
    min-height: 40vh;
    padding: 3rem 1rem;
  }

  .winners-hero h1 {
    margin-bottom: 1rem;
  }

  .legend-card-image {
    height: 250px;
  }
}

/* ========================================
   7. ACCESSIBILITY
   ======================================== */

.legend-card:focus-visible {
  outline: 2px solid #8B0000;
  outline-offset: 2px;
}

/* ========================================
   8. NO FILTER PILLS (Already removed in HTML)
   ======================================== */

.filter-tabs,
.category-filter,
[class*="filter-pill"] {
  display: none;
}
