/* ============================================
   CRITICAL MOBILE FIXES
   Additional layer to ensure perfect mobile display
   ============================================ */

/* Prevent horizontal scroll at all costs */
html {
  width: 100%;
  scroll-behavior: smooth;
  /* NO position:relative - it breaks sticky! */
  /* NO overflow-x here either - mixed with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks sticky too! */
}

body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  /* NO position:relative - it breaks sticky! */
}

/* Ensure all major containers respect viewport */
/* NOTE: "nav" is intentionally excluded here. Giving a <nav> element
   overflow-x: hidden makes its overflow-y auto-compute to "auto" (per the
   CSS overflow spec), turning it into a clipping/scroll container. Since
   the header's dropdown submenu (.selected-a154) is a descendant of
   .modal_6ff0 (a <nav>), it was getting clipped and forced into a tiny
   internal scrollbar instead of opening naturally below the nav link. */
main,
section,
article,
footer {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header must NOT have max-width restriction for sticky to work */
header.bronze-0f39 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".overlay-742b" is intentionally excluded here for the same reason as
   "nav" above — the header's <div class="container"> wraps the nav and
   must not clip the dropdown submenu with an auto-computed overflow-y.
   It's already width-capped via max-width in style.alert-5166 so it can't cause
   horizontal overflow anyway. */
.white-2149,
.nav_e610,
.surface-motion-61b3,
.tag_618d,
.sort_stale_1311,
.icon-6a70,
.hover_red_b4e7,
.popup_south_fff6,
.breadcrumb-015e,
.disabled_bronze_b2a8,
.detail-4fb4 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .hidden_old_96a7 {
    padding: 8px 0;
  }
  
  .alert-middle-c131 img {
    height: 28px;
    width: auto;
  }
  
  .south_b1ac {
    display: none !important;
  }
  
  .column-2664 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .column-2664 svg {
    width: 14px;
    height: 14px;
  }
  
  .search-plasma-573f {
    padding: 6px;
  }
  
  .title_879f {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .surface-motion-61b3,
  .nav_e610,
  .tag_618d,
  .sort_stale_1311,
  .next_0006,
  .layout-gold-622f,
  .green_493d,
  .carousel_right_3a4a,
  .north_7eef,
  .message_hard_6fca,
  .dynamic-99b5,
  .focus_a91b {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .out_f064,
  .warm-018b {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .last-218c,
  .short-55ea,
  .list-cool-397c,
  .popup-east-74c7,
  .text-pressed-12db,
  .primary_up_80c6,
  .complex-7306 {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  
  /* Ensure images are responsive */
  img,
  svg,
  picture {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* Better padding for mobile */
  .modal-warm-72e4,
  .slider_complex_8d46,
  .row_51bc,
  .sort_f941,
  .breadcrumb-gold-3b05 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .row_efd7,
  .short_77c5,
  .banner_cf0b,
  .hot_725d {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .info-5629,
  .background_a387 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .article-618d,
  .gallery-1516,
  .item_dark_0e86,
  .table_silver_3514 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .column_5af5,
  .border_down_35d0,
  .component-small-0778,
  .fresh-8904,
  .widget-solid-d907,
  .pagination-short-664e {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .modal-warm-72e4,
  .slider_complex_8d46,
  .sort_f941 {
    max-width: none !important;
  }
  
  .overlay-742b {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .row_efd7 {
    font-size: 1.5rem !important;
  }
  
  .short_77c5 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .overlay_solid_59ea,
  .shadow_9680 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .banner_cf0b {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .thumbnail_3af1 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .title_9229 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .modal-warm-72e4,
  .sort_f941 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

/* iPhone X and notch devices */
@supports (padding: max(0px)) {
  body {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }
}

/* css-noise: b95b */
.phantom-card-z3 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.0;
}
