/* ============================================
   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 (.notice-hard-5bf4) is a descendant of
   .dropdown_bottom_0323 (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.inner_873f {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".description-55ae" 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.summary-6444 so it can't cause
   horizontal overflow anyway. */
.description-c63a,
.progress-static-f35b,
.content-current-a90d,
.row-lower-1000,
.fast_76b1,
.dropdown-warm-63fe,
.photo_pro_21cc,
.badge_mini_3ae0,
.notification-a75f,
.link-current-5e5b,
.disabled_e862 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .border-f3cb {
    padding: 8px 0;
  }
  
  .table-east-ee67 img {
    height: 28px;
    width: auto;
  }
  
  .pink_9c19 {
    display: none !important;
  }
  
  .mask_dark_8480 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .mask_dark_8480 svg {
    width: 14px;
    height: 14px;
  }
  
  .heading_center_2d75 {
    padding: 6px;
  }
  
  .mini-d963 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .content-current-a90d,
  .progress-static-f35b,
  .row-lower-1000,
  .fast_76b1,
  .narrow_97d5,
  .mask_1b97,
  .row_south_5dca,
  .module_red_8b4f,
  .steel_d2e4,
  .element_south_993e,
  .upper_37a9,
  .steel-be35 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .short_01b1,
  .hero_wood_7365 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .grid_7cd4,
  .warm-5f50,
  .progress_5d0a,
  .item_dirty_fa3d,
  .media-bronze-9d25,
  .slider_cold_1a68,
  .light_e6ae {
    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 */
  .banner-green-c400,
  .background_dark_31e7,
  .simple_2622,
  .menu_de9a,
  .huge-26dc {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .plasma-e9c3,
  .tooltip_bottom_347d,
  .paper-c8a0,
  .photo-7499 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .shade_gold_ab02,
  .sort_b04f {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .dim_b47f,
  .button-steel-d541,
  .out_dc2c,
  .gallery_3e15 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .dim_bfb0,
  .title_ad24,
  .summary-copper-0db7,
  .over-6df6,
  .paper-7afa,
  .white-71dd {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .banner-green-c400,
  .background_dark_31e7,
  .menu_de9a {
    max-width: none !important;
  }
  
  .description-55ae {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .plasma-e9c3 {
    font-size: 1.5rem !important;
  }
  
  .tooltip_bottom_347d {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .banner_lower_546e,
  .pro-cd31 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .paper-c8a0 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .brown-22f4 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .slow_131a {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .banner-green-c400,
  .menu_de9a {
    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: e701 */
.shadow-element-q2 {
  padding: 0.1rem;
  font-size: 14px;
  line-height: 1.0;
}
