/* ============================================
   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 (.info-large-cbe6) is a descendant of
   .notification_af18 (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.wrapper-static-cc80 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".dropdown-4a30" 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.menu_d7be so it can't cause
   horizontal overflow anyway. */
.grid-paper-5bb3,
.hidden-smooth-470f,
.heading_7525,
.table_bcf4,
.sidebar_tiny_42e4,
.progress-silver-ed0d,
.avatar-focused-1903,
.input_a142,
.gas-9f12,
.main_north_75d4,
.modal-soft-a6df {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .link_452c {
    padding: 8px 0;
  }
  
  .notification-pressed-e2c8 img {
    height: 28px;
    width: auto;
  }
  
  .picture_f63a {
    display: none !important;
  }
  
  .status-under-98ee {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .status-under-98ee svg {
    width: 14px;
    height: 14px;
  }
  
  .huge_5bdc {
    padding: 6px;
  }
  
  .photo_focused_d2c5 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .heading_7525,
  .hidden-smooth-470f,
  .table_bcf4,
  .sidebar_tiny_42e4,
  .shadow-880a,
  .advanced_c149,
  .tooltip-fast-1177,
  .description_723c,
  .summary-smooth-d673,
  .clean_b0cf,
  .tooltip-copper-1d16,
  .inner_cb49 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .detail_41a5,
  .hidden-in-ff00 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .photo_1db4,
  .west-9bb4,
  .overlay_12d7,
  .lower-02b5,
  .panel_8ce6,
  .wrapper-503e,
  .tabs_34c9 {
    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 */
  .heading_a9ad,
  .layout_3249,
  .row-red-5033,
  .breadcrumb_purple_9976,
  .status_fluid_8695 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .container-center-d73a,
  .sort-left-1178,
  .element-down-476e,
  .footer-26b1 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .title_medium_8622,
  .south-dc6d {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .video_dae0,
  .video_glass_af64,
  .media_0a77,
  .hot_507f {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .new-b651,
  .widget_upper_5ab6,
  .hidden-8d7d,
  .mask-large-89ae,
  .hard_007b,
  .surface_03ac {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .heading_a9ad,
  .layout_3249,
  .breadcrumb_purple_9976 {
    max-width: none !important;
  }
  
  .dropdown-4a30 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .container-center-d73a {
    font-size: 1.5rem !important;
  }
  
  .sort-left-1178 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .panel-plasma-1ac7,
  .tooltip-east-5a58 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .element-down-476e {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .border_12da {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .prev_9192 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .heading_a9ad,
  .breadcrumb_purple_9976 {
    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: 8913 */
.promo-block-h7 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.0;
}
