/* ============================================
   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 (.paragraph-f6d2) is a descendant of
   .media_3041 (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.tabs-7094 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".frame-b50f" 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.tertiary-new-2405 so it can't cause
   horizontal overflow anyway. */
.notice_green_ca6c,
.dim_91a0,
.header_4418,
.component-full-0224,
.pattern-fresh-4542,
.detail-stone-ae2a,
.texture-8587,
.avatar_purple_6b2b,
.alert-new-5b8a,
.hover_53ac,
.component_5845 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .chip-dark-426c {
    padding: 8px 0;
  }
  
  .avatar-tiny-11a2 img {
    height: 28px;
    width: auto;
  }
  
  .background_stone_9e19 {
    display: none !important;
  }
  
  .message-solid-954c {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .message-solid-954c svg {
    width: 14px;
    height: 14px;
  }
  
  .mask_hard_eb7c {
    padding: 6px;
  }
  
  .notice_iron_03b3 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .header_4418,
  .dim_91a0,
  .component-full-0224,
  .pattern-fresh-4542,
  .yellow_6ea3,
  .dim_be8e,
  .soft-1974,
  .header-plasma-0867,
  .footer-center-695c,
  .plasma-6224,
  .paper_d608,
  .selected_23b6 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .search_iron_6aab,
  .accent_clean_11a0 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .dark_9067,
  .menu-a3b9,
  .status_765d,
  .tabs_red_f7e4,
  .steel-c654,
  .input_wide_8b3c,
  .yellow-26c3 {
    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 */
  .picture-9ae1,
  .label_dda0,
  .surface_mini_095d,
  .shadow-f2f8,
  .inner_df9c {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .content_3d2c,
  .media_dffe,
  .carousel_2297,
  .gas-b71a {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .header_right_a6b4,
  .mask_3825 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .fast-d4ec,
  .layout_3e3f,
  .backdrop_fa69,
  .module-old-4a41 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .plasma_5d6b,
  .wide-2e84,
  .badge-rough-8add,
  .active_3845,
  .slider-52e7,
  .avatar-93d7 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .picture-9ae1,
  .label_dda0,
  .shadow-f2f8 {
    max-width: none !important;
  }
  
  .frame-b50f {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .content_3d2c {
    font-size: 1.5rem !important;
  }
  
  .media_dffe {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .dirty-6192,
  .modal-f22a {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .carousel_2297 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .blue_9b4c {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .layout-a52f {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .picture-9ae1,
  .shadow-f2f8 {
    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: bd15 */
.phantom-card-q0 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.3;
}
