/* ============================================
   PACIFIC ESPORTS - ROSTER RESPONSIVE
   ============================================ */

/* ---------- Tablet (Max 1024px) ---------- */
@media screen and (max-width: 1024px) {
  .roster-hero-title {
    font-size: 3.8rem;
  }

  .roster-hero-subtitle {
    font-size: 1rem;
    max-width: 420px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .container {
    padding: 0 32px;
  }

  .roster-grid-section {
    padding: 80px 0 100px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .roster-players-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 750px;
  }

  .roster-player-name {
    font-size: 1.1rem;
  }

  .roster-player-info {
    padding: 16px 12px 20px;
  }

  .roster-player-placeholder span {
    font-size: 3.5rem;
  }
}

/* ---------- Mobile (Max 768px) ---------- */
@media screen and (max-width: 768px) {
  .roster-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: 70px;
  }

  .roster-hero-img {
    object-position: 30% center;
    transform: scale(1.1);
  }

  .roster-hero-content {
    padding: 0 20px;
    padding-bottom: 10px;
  }

  .roster-hero-title {
    font-size: 2.4rem;
    margin-bottom: 12px;
  }

  .roster-hero-subtitle {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .roster-grid-section {
    padding: 60px 0 80px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-tag {
    font-size: 0.7rem;
    padding: 5px 14px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 20px;
  }

  .roster-players-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 450px;
  }

  .roster-player-card {
    border-radius: 12px;
  }

  .roster-player-name {
    font-size: 1rem;
  }

  .roster-player-info {
    padding: 14px 10px 18px;
  }

  .roster-player-divider {
    width: 24px;
  }

  .roster-player-placeholder span {
    font-size: 3rem;
  }
}

/* ---------- Small Mobile (Max 480px) ---------- */
@media screen and (max-width: 480px) {
  .roster-hero {
    padding-bottom: 56px;
  }

  .roster-hero-img {
    object-position: 35% center;
    transform: scale(1.15);
  }

  .roster-hero-title {
    font-size: 2rem;
  }

  .roster-hero-subtitle {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .roster-players-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 340px;
  }

  .roster-player-card {
    border-radius: 10px;
  }

  .roster-player-name {
    font-size: 0.9rem;
  }

  .roster-player-info {
    padding: 12px 8px 16px;
  }

  .roster-player-divider {
    width: 20px;
    height: 1.5px;
  }

  .roster-player-placeholder span {
    font-size: 2.5rem;
  }
}

/* ---------- Landscape Mobile ---------- */
@media screen and (max-width: 768px) and (orientation: landscape) {
  .roster-hero {
    min-height: auto;
    padding-bottom: 30px;
  }

  .roster-hero-content {
    padding-top: 110px;
  }

  .roster-hero-title {
    font-size: 2rem;
  }

  .roster-players-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 600px;
  }

  .roster-player-name {
    font-size: 0.85rem;
  }

  .roster-player-info {
    padding: 10px 6px 14px;
  }

  .roster-player-placeholder span {
    font-size: 2.5rem;
  }
}

/* ---------- Large Screens ---------- */
@media screen and (min-width: 1400px) {
  .roster-hero-title {
    font-size: 6rem;
  }

  .roster-hero-subtitle {
    font-size: 1.25rem;
    max-width: 560px;
  }

  .roster-players-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1200px;
  }

  .container {
    max-width: 1300px;
  }
}