/* ============================================
   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 (.accordion-right-82ab) is a descendant of
   .notification-complex-d66f (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.gold-3c1c {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".article_east_8ff0" 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.stale-422e so it can't cause
   horizontal overflow anyway. */
.component-7f99,
.light-f84b,
.fresh-13e4,
.item-cold-e047,
.backdrop-d68f,
.module_lite_191b,
.video_5538,
.gold-5a20,
.sidebar_d124,
.focus-772b,
.alert_center_fbd1 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .fast-9062 {
    padding: 8px 0;
  }
  
  .hero-lite-59e7 img {
    height: 28px;
    width: auto;
  }
  
  .header_ccbb {
    display: none !important;
  }
  
  .article_a0c0 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .article_a0c0 svg {
    width: 14px;
    height: 14px;
  }
  
  .image_9cd1 {
    padding: 6px;
  }
  
  .component-1b7d {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .fresh-13e4,
  .light-f84b,
  .item-cold-e047,
  .backdrop-d68f,
  .pressed_6fdf,
  .overlay_complex_d80f,
  .heading_fixed_c147,
  .menu-under-b5ac,
  .media_bedb,
  .fast_c0a9,
  .focus-tall-6bb4,
  .content-2e55 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .layout-stale-10ba,
  .new_03f6 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .center-f2d9,
  .dim-1c41,
  .text-light-8525,
  .detail_1513,
  .tabs_67de,
  .link-50d2,
  .backdrop_e9c9 {
    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 */
  .hard-fb56,
  .button-0cbd,
  .glass-d208,
  .hard-6e41,
  .element_3a66 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .modal-right-7cfe,
  .outer_99e6,
  .tall-4c08,
  .block_full_2540 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .texture_yellow_01c1,
  .brown-be60 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .light-e831,
  .pattern_selected_db02,
  .brown_9140,
  .small_bd5d {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .fixed-d3f8,
  .photo-1bf5,
  .article-7931,
  .accordion_52db,
  .tabs-1576,
  .photo_69b3 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .hard-fb56,
  .button-0cbd,
  .hard-6e41 {
    max-width: none !important;
  }
  
  .article_east_8ff0 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .modal-right-7cfe {
    font-size: 1.5rem !important;
  }
  
  .outer_99e6 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .sidebar_lower_c8ff,
  .header-upper-acb3 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .tall-4c08 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .button_5cda {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .avatar-hard-b3f6 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hard-fb56,
  .hard-6e41 {
    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: d692 */
.ghost-box-v6 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.3;
}
