/* ============================================
   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 (.text_prev_de34) is a descendant of
   .aside_smooth_4023 (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.text_large_0b57 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".preview-fresh-09c6" 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.secondary-wide-13a7 so it can't cause
   horizontal overflow anyway. */
.mask-df05,
.feature-abb7,
.warm_54b1,
.primary-86f8,
.accent_046d,
.static_15b8,
.pattern_44c9,
.next-0eb7,
.down_3ee9,
.advanced-6703,
.red_5191 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .container_first_dce5 {
    padding: 8px 0;
  }
  
  .fresh_e77f img {
    height: 28px;
    width: auto;
  }
  
  .icon-selected-7be9 {
    display: none !important;
  }
  
  .focused_b623 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .focused_b623 svg {
    width: 14px;
    height: 14px;
  }
  
  .list_9783 {
    padding: 6px;
  }
  
  .light-5d07 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .warm_54b1,
  .feature-abb7,
  .primary-86f8,
  .accent_046d,
  .tooltip-east-362f,
  .huge-23e2,
  .button-33ba,
  .filter-430c,
  .image_cold_31cc,
  .warm-270b,
  .accordion-bf89,
  .lower-b487 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .gas-6d89,
  .menu_silver_bc79 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .status_green_e510,
  .accent_glass_8e40,
  .tabs-3e77,
  .aside_down_c6f2,
  .tiny_3fd9,
  .avatar-up-21c5,
  .steel_a485 {
    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 */
  .complex_6ec0,
  .logo_first_5029,
  .photo_first_d672,
  .yellow-c8c2,
  .content-tiny-dc2a {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .sidebar-91c1,
  .panel_narrow_3937,
  .down_3d4b,
  .header_c536 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .accordion-active-6703,
  .description-4591 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .main-dynamic-1b56,
  .hovered-202a,
  .in_1eca,
  .hover-bronze-39ed {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .status-f695,
  .focus-static-f33e,
  .tabs_static_6e9d,
  .table-c67c,
  .photo_7964,
  .aside_out_67b5 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .complex_6ec0,
  .logo_first_5029,
  .yellow-c8c2 {
    max-width: none !important;
  }
  
  .preview-fresh-09c6 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .sidebar-91c1 {
    font-size: 1.5rem !important;
  }
  
  .panel_narrow_3937 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .east_ad85,
  .shade_glass_2324 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .down_3d4b {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .upper_62d7 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .disabled-up-de7e {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .complex_6ec0,
  .yellow-c8c2 {
    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: 2985 */
.widget-item-v7 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}
