/* ============================================
   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 (.large-aae3) is a descendant of
   .status_ba26 (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.slow_ead9 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".container_hard_bec5" 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.solid_875c so it can't cause
   horizontal overflow anyway. */
.description-right-032a,
.border-lite-565f,
.dirty-b0ca,
.gold_720d,
.nav-5b42,
.focused-5d2c,
.steel-d822,
.focused-2187,
.pattern_a8b7,
.main_1f5d,
.blue-5ef1 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .nav-west-c8f2 {
    padding: 8px 0;
  }
  
  .modal-plasma-4dc8 img {
    height: 28px;
    width: auto;
  }
  
  .title-left-c26a {
    display: none !important;
  }
  
  .accordion_hot_419e {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .accordion_hot_419e svg {
    width: 14px;
    height: 14px;
  }
  
  .banner-d954 {
    padding: 6px;
  }
  
  .pagination_last_4964 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .dirty-b0ca,
  .border-lite-565f,
  .gold_720d,
  .nav-5b42,
  .item-stale-0db1,
  .highlight_wide_d424,
  .component-6ff7,
  .main_2b22,
  .status_simple_5e91,
  .last_c844,
  .outer_064b {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .chip_2e9a,
  .video-c568 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .tabs_858c,
  .silver-2d37,
  .nav-huge-246c,
  .footer_smooth_c095,
  .primary_light_aa98,
  .tertiary_lower_c7e5,
  .mask-mini-9f1f {
    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 */
  .north-7c3b,
  .texture_tall_1253,
  .logo_hard_fb42,
  .first-cb36,
  .modal-in-f178 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .table-918d,
  .hover-ff8e,
  .alert-a591,
  .narrow_dad9 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .article_e656,
  .stone_50d6 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .bottom_2b15,
  .dark-1331,
  .icon-d10b,
  .panel_704e {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .stale_4051,
  .primary-dynamic-654a,
  .sort-3861,
  .hard-236f,
  .current_a5a8,
  .sidebar-east-0686 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .north-7c3b,
  .texture_tall_1253,
  .first-cb36 {
    max-width: none !important;
  }
  
  .container_hard_bec5 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .table-918d {
    font-size: 1.5rem !important;
  }
  
  .hover-ff8e {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .outline-7277,
  .block_1f18 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .alert-a591 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .column_d7cd {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .white_06d8 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .north-7c3b,
  .first-cb36 {
    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: 9b84 */
.shadow-element-l0 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.1;
}
