/* ═══════ DESKTOP / TABLET CSS (min-width: 768px) ═══════ */
html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    overflow-y: auto;
    overscroll-behavior: none;
}
/* ─── Page Layout ─── */
.page {
  max-width: 800px;
  padding: 80px 24px 150px;
}

/* ─── Header ─── */
.app-header {
  height: 62px;
  padding: 0 24px;
}
.header-title-gradient {
  font-size: 18px;
  letter-spacing: 3px;
}

/* ─── Bottom Nav ─── */
.bottom-nav {
  max-width: 480px;
  padding: 10px 12px;
}
.nav-label {
  font-size: 12px;
}
.nav-icon {
  width: 40px;
  height: 40px;
  font-size: 16px;
}

/* ─── Auth Page ─── */
.auth-container {
  width: 400px;
  padding: 32px;
}
.auth-logo {
  font-size: 28px;
}

/* ─── Slider ─── */
.slider-container {
  aspect-ratio: 16/7;
  border-radius: 20px;
}
.slide-overlay-title {
  font-size: 22px;
}
.slide-overlay-subtitle {
  font-size: 14px;
}

/* ─── Sectors Grid (3 columns on desktop) ─── */
.sectors-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sector-card {
  min-height: 180px;
}
.sector-heading {
  font-size: 20px;
}

/* ─── Matches Grid (2 columns) ─── */
.matches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.match-card-inner {
  padding: 16px;
}
.match-title {
  font-size: 18px;
}
.match-thumb {
  width: 90px;
  height: 90px;
}

/* ─── Wallet ─── */
.wallet-card {
  padding: 32px 28px;
  border-radius: 24px;
}
.wallet-balance {
  font-size: 38px;
}
.wallet-actions {
  gap: 16px;
}
.wallet-btn {
  height: 54px;
  font-size: 15px;
}

/* ─── Payment Methods (flex row, max 5 cards) ─── */
.payment-methods-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.pm-card {
  flex: 1 1 0;
  min-width: 120px;
  max-width: 180px;
}
.pm-card.pm-img-only img {
  height: 90px;
}

/* ─── Profile ─── */
.profile-banner {
  height: 120px;
}
.profile-stats {
  gap: 12px;
}
.stat-val {
  font-size: 22px;
}
.profile-nav-cards {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* ─── Transactions ─── */
.txn-list {
  gap: 10px;
}
.txn-item {
  padding: 14px;
}
.txn-type {
  font-size: 13px;
}
.txn-amount {
  font-size: 15px;
}

/* ─── Support Chat ─── */
.support-page {
  max-width: 800px !important;
  margin: 0 auto;
  left: 0;
  right: 0;
}

/* ─── Notifications ─── */
.mail-card {
  padding: 16px;
}
.mail-card-title {
  font-size: 15px;
}

/* ─── Results ─── */
.winner-cards {
  gap: 14px;
}
.winner-card {
  min-width: 160px;
  padding: 16px;
}

/* ─── Forms ─── */
.form-card {
  padding: 24px;
}
.form-group input,
.form-group select,
.form-group textarea {
  height: 48px;
  font-size: 15px;
}
.btn-submit {
  height: 52px;
  font-size: 15px;
}

/* ─── Modal ─── */
.modal-content {
  max-width: 460px;
  padding: 28px;
}

/* ─── News Ticker ─── */
.news-ticker {
  height: 44px;
  border-radius: 14px;
  padding: 10px 16px;
}

/* ─── FAB Chat ─── */
.fab-chat {
  bottom: 90px;
  right: 24px;
  width: 52px;
  height: 52px;
  font-size: 20px;
}

/* ─── Toast Notifications ─── */
.toast-notif {
  max-width: 340px;
}
.push-notif-toast {
  max-width: 460px;
}

/* ─── Dev Info ─── */
.dev-info-card {
  padding: 36px;
}
.dev-name {
  font-size: 26px;
}
.dev-info-row {
  padding: 14px 18px;
}

/* ─── Custom Alert ─── */
.custom-alert-card {
  width: 380px;
  padding: 32px 28px;
}
