/* HERO (category pages) */
.hero { padding: 130px 80px 0 80px; height: 470px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0.2; }

/* RANKING SECTION */
.ranking-title { font-family: 'Poppins', sans-serif; font-size: 40px; font-weight: 500; color: #191919; letter-spacing: -1.2px; line-height: 1.2; margin-bottom: 8px; }
.ranking-subtitle { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 400; color: #191919; line-height: 1.5; margin-bottom: 12px; }

/* DATE DROPDOWN */
.date-dropdown { position: relative; display: inline-block; }
.date-btn { display: flex; align-items: center; gap: 10px; background: transparent; border: 1px solid rgba(0,0,0,0.9); border-radius: 50px; padding: 0 28px 0 20px; height: 48px; font-family: 'Poppins', sans-serif; font-size: 24px; color: #191919; letter-spacing: -1.6px; line-height: 1.67; cursor: pointer; }
.date-dropdown-list { display: none; position: absolute; top: 56px; left: 0; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 10; min-width: 200px; overflow: hidden; }
.date-dropdown-list.open { display: block; }
.date-dropdown-item { padding: 12px 24px; font-family: 'Poppins', sans-serif; font-size: 18px; color: #191919; cursor: pointer; }
.date-dropdown-item:hover { background: #f3f4f6; }
.date-dropdown-item.active { color: #2b6be4; font-weight: 600; }

/* RANKING TABLE */
/* Columns: #(80) | indicator(40) | prev(100) | name(flex) | score(120) */
.ranking-table { width: 100%; }
.ranking-header { display: flex; align-items: center; height: 48px; padding-bottom: 12px; }
.ranking-header span { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; color: #a0a0a0; letter-spacing: 2px; }
.ranking-header .col-rank { width: 80px; }
.ranking-header .col-indicator { width: 40px; text-align: center; }
.ranking-header .col-prev { width: 100px; text-align: center; }
.ranking-header .col-name { flex: 1; }
.ranking-header .col-score { width: 120px; text-align: right; }
.ranking-divider-thick { height: 2px; background: #191919; width: 100%; }
.ranking-divider { height: 1px; background: #e5e7eb; width: 100%; }
.ranking-row { display: flex; align-items: center; height: 56px; }
.ranking-row .col-rank { width: 80px; font-family: 'Poppins', sans-serif; font-size: 24px; font-weight: 700; color: #2b6be4; }
.ranking-row.lower .col-rank { font-size: 20px; font-weight: 600; color: #a0a0a0; }
.ranking-row .col-indicator { width: 40px; display: flex; align-items: center; justify-content: center; }
.ranking-row .col-prev { width: 100px; font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 600; color: #a0a0a0; text-align: center; }
.ranking-row .col-name { flex: 1; font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 500; color: #191919; letter-spacing: -0.3px; }
.ranking-row.lower .col-name { font-weight: 400; }
.ranking-row .col-score { width: 120px; font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 600; color: #191919; text-align: right; }

/* AWARD ICON */
.award-icon { width: 22px; height: 22px; vertical-align: middle; margin-right: 6px; margin-top: -2px; }

/* INDICATORS */
.indicator-up { width: 12px; height: 10px; }
.indicator-down { width: 12px; height: 10px; }
.indicator-same { width: 8px; height: 8px; background: #2b6be4; border-radius: 50%; display: inline-block; }
.indicator-new { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; color: #2b6be4; letter-spacing: 1px; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .ranking-title { font-size: 28px; }
  .ranking-row .col-rank { font-size: 20px; }
  .ranking-row .col-name { font-size: 16px; }
  .ranking-row .col-score { font-size: 16px; }
  .ranking-row .col-prev { font-size: 16px; }
  .ranking-row.lower .col-rank { font-size: 16px; }
}

@media (max-width: 768px) {
  .ranking-title { font-size: 22px; }
  .ranking-subtitle { font-size: 14px; margin-bottom: 24px; }
  .ranking-header .col-rank { width: 40px; }
  .ranking-header .col-indicator { width: 30px; }
  .ranking-header .col-score { width: 60px; }
  .ranking-header .col-prev { width: 50px; }
  .ranking-row .col-rank { width: 40px; font-size: 16px; }
  .ranking-row .col-indicator { width: 30px; }
  .ranking-row .col-prev { width: 50px; font-size: 14px; }
  .ranking-row .col-name { font-size: 14px; }
  .ranking-row .col-score { width: 60px; font-size: 14px; }
  .ranking-row.lower .col-rank { font-size: 14px; }
  .ranking-row { height: 48px; }
}
