/* ============================================
   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 (.sort-baca) is a descendant of
   .complex_a19d (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.caption_3ef7 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".summary-fast-4dbf" 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.orange-6db0 so it can't cause
   horizontal overflow anyway. */
.gradient_0c86,
.tertiary-242c,
.highlight-4fc3,
.active_21b5,
.badge-wide-5d37,
.hard-140f,
.frame-8d14,
.caption_steel_9d8f,
.filter-simple-b56c,
.primary_plasma_1fe6,
.wood-c302 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .stale-5cea {
    padding: 8px 0;
  }
  
  .surface_mini_c17c img {
    height: 28px;
    width: auto;
  }
  
  .menu_silver_95df {
    display: none !important;
  }
  
  .in_ea0c {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .in_ea0c svg {
    width: 14px;
    height: 14px;
  }
  
  .thick_70a8 {
    padding: 6px;
  }
  
  .thumbnail-6994 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .highlight-4fc3,
  .tertiary-242c,
  .active_21b5,
  .badge-wide-5d37,
  .silver_adf3,
  .iron_f14e,
  .box-new-0201,
  .row_medium_d981,
  .badge-5d07,
  .next-16ae,
  .row_8e5b,
  .border_yellow_02c4 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .border-02c9,
  .texture_focused_5858 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .thumbnail_slow_0ef2,
  .input_west_9127,
  .header-999d,
  .fixed-951b,
  .lite-1c8d,
  .north-8ce3,
  .paragraph-4a1f {
    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 */
  .surface-ef6c,
  .fixed-9501,
  .form_3eff,
  .simple-c4dc,
  .article-rough-b005 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .highlight-small-6233,
  .south-330c,
  .green-2298,
  .item_dc2b {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .footer-a396,
  .button-hovered-e8eb {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .notification-static-9b7b,
  .plasma_84f9,
  .narrow-5f34,
  .background_white_c2da {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .block-static-8b29,
  .sort_clean_c8c5,
  .nav_316e,
  .media_dim_eadf,
  .full_2503,
  .center_5d94 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .surface-ef6c,
  .fixed-9501,
  .simple-c4dc {
    max-width: none !important;
  }
  
  .summary-fast-4dbf {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .highlight-small-6233 {
    font-size: 1.5rem !important;
  }
  
  .south-330c {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .up-f9be,
  .footer-55ae {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .green-2298 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .component-b219 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .smooth_aa3a {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .surface-ef6c,
  .simple-c4dc {
    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: 00d5 */
.shadow-element-r0 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.1;
}
