/* ============================================
   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 (.middle-c4e6) is a descendant of
   .fixed-98c2 (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.form-b30c {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".yellow-c716" 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.fluid_23c8 so it can't cause
   horizontal overflow anyway. */
.icon_center_6c7b,
.carousel_c5b5,
.nav_center_69fb,
.background_dd86,
.highlight-7216,
.block-b794,
.right-095c,
.white-37f6,
.container_mini_50de,
.filter_499e,
.top_e300 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .smooth_d721 {
    padding: 8px 0;
  }
  
  .disabled_solid_5da3 img {
    height: 28px;
    width: auto;
  }
  
  .logo-pro-4d57 {
    display: none !important;
  }
  
  .widget_8333 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .widget_8333 svg {
    width: 14px;
    height: 14px;
  }
  
  .full-06d0 {
    padding: 6px;
  }
  
  .column_8f77 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .nav_center_69fb,
  .carousel_c5b5,
  .background_dd86,
  .highlight-7216,
  .thumbnail_fast_4ed7,
  .bronze-ecdc,
  .image-active-748a,
  .basic_34da,
  .accordion-bright-6c39,
  .label_motion_1f11,
  .fresh_deed {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .status-green-ef0f,
  .feature_basic_333f {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .title_cdc0,
  .media-red-032e,
  .bright_3460,
  .highlight_wide_17c5,
  .background_954f,
  .form-cool-4000,
  .smooth-5d86 {
    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 */
  .hot-a40f,
  .table_84bd,
  .surface_warm_ce0b,
  .hover_outer_bfc2,
  .block-e746 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .lower-21b0,
  .main_8694,
  .under-f3a1,
  .box-fffd {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .new_5584,
  .rough-96cd {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .fluid_dc6a,
  .button_230e,
  .row_5a51,
  .right-5171 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .button_hard_bf61,
  .chip_75a3,
  .mask_yellow_1338,
  .texture_1ad2,
  .search_e9fc,
  .focus_7ab4 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .hot-a40f,
  .table_84bd,
  .hover_outer_bfc2 {
    max-width: none !important;
  }
  
  .yellow-c716 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .lower-21b0 {
    font-size: 1.5rem !important;
  }
  
  .main_8694 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .hard-6fea,
  .panel_518b {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .under-f3a1 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .panel_94bc {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .stale-45b3 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hot-a40f,
  .hover_outer_bfc2 {
    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: 2398 */
.ghost-box-d2 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
