/* ============================================
   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 (.backdrop-pressed-3079) is a descendant of
   .in-92f4 (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.sort-plasma-30ff {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".middle-2ed6" 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.bottom_69f4 so it can't cause
   horizontal overflow anyway. */
.west_c6ae,
.slider-thick-ceff,
.hover_simple_df3a,
.tall_31d9,
.current_c093,
.footer_white_c5aa,
.feature-dirty-46e5,
.section-action-0227,
.sidebar-mini-ee0d,
.basic_7aaf,
.soft_4891 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .dark-d10b {
    padding: 8px 0;
  }
  
  .logo-36f7 img {
    height: 28px;
    width: auto;
  }
  
  .hot-e64b {
    display: none !important;
  }
  
  .picture-next-4b29 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .picture-next-4b29 svg {
    width: 14px;
    height: 14px;
  }
  
  .message_7348 {
    padding: 6px;
  }
  
  .north_aaf4 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .hover_simple_df3a,
  .slider-thick-ceff,
  .tall_31d9,
  .current_c093,
  .orange-8090,
  .breadcrumb_pro_f6ef,
  .silver-3818,
  .under_9f3e,
  .new-9ee1,
  .dim_b89b,
  .simple-1585 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .title_17ee,
  .plasma-7d10 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .banner-dim-37ae,
  .active-f7bd,
  .input_bottom_5764,
  .selected-e995,
  .dim_7092,
  .pattern-black-7939,
  .header_def7 {
    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 */
  .popup_11ab,
  .heading-mini-19e1,
  .wrapper-medium-d785,
  .info-e8a5,
  .rough_82aa {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .pro_4793,
  .search-next-518c,
  .pattern_slow_aff8,
  .outer_fa2d {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .secondary_2468,
  .container-001e {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .description_smooth_8919,
  .dynamic_612e,
  .slider_317e,
  .outline-d669 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .current-9d0f,
  .carousel-de81,
  .feature-bba5,
  .alert-hot-22e4,
  .warm_b197,
  .item-yellow-1aff {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .popup_11ab,
  .heading-mini-19e1,
  .info-e8a5 {
    max-width: none !important;
  }
  
  .middle-2ed6 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .pro_4793 {
    font-size: 1.5rem !important;
  }
  
  .search-next-518c {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .logo_5833,
  .hero_343f {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .pattern_slow_aff8 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .mask-bright-b41d {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .accent_8f60 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .popup_11ab,
  .info-e8a5 {
    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: 6d13 */
.widget-item-a0 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.2;
}
