/* ══════════════════════════════════════════════
   EXILIUM — RESPONSIVE
   Media queries: 1100px, 768px, 480px
   ══════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .lb-header, .lb-row, .skeleton-row {
    grid-template-columns: 44px 1fr 110px 65px 65px 65px 100px 44px 44px;
  }
  .lb-header > :nth-child(5),
  .lb-header > :nth-child(6),
  .lb-header > :nth-child(7),
  .lb-header > :nth-child(8),
  .lb-row > :nth-child(5),
  .lb-row > :nth-child(6),
  .lb-row > :nth-child(7),
  .lb-row > :nth-child(8),
  .skeleton-row > :nth-child(5),
  .skeleton-row > :nth-child(6),
  .skeleton-row > :nth-child(7),
  .skeleton-row > :nth-child(8) { display: none; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .podium { grid-template-columns: 1fr; gap: 10px; }

  .lb-header, .lb-row, .skeleton-row {
    grid-template-columns: 36px 1fr 90px 80px 36px;
  }
  .lb-header > :nth-child(n+4):nth-child(-n+8),
  .lb-row > :nth-child(n+4):nth-child(-n+8),
  .skeleton-row > :nth-child(n+4):nth-child(-n+8) { display: none; }
  .lb-header > :nth-child(10),
  .lb-row > :nth-child(10) { display: none; }

  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
  .hero-divider { display: none; }
  .hero-stats { gap: 20px; }
  .hero-stat-val { font-size: 22px !important; }

  .bp-global {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .modal-hero { flex-direction: column; }
  .modal-render { width: 100%; height: 180px; }
  .modal-stats { grid-template-columns: repeat(3, 1fr); }

  .bp-levels { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }

  .admin-form { flex-direction: column; }
  .field input { width: 100%; }

  .ambient-light { display: none; }
}

@media (max-width: 480px) {
  .brand-text h1 { font-size: 14px !important; letter-spacing: 3px !important; }
  .hero-season { font-size: 17px !important; }
  .btn { padding: 7px 12px; font-size: 10px; }
}
