/* ============================================
   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 (.widget-inner-c548) is a descendant of
   .middle_db24 (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-d194 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".image-a81b" 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.large_a1d2 so it can't cause
   horizontal overflow anyway. */
.nav_outer_be4d,
.slider-wide-3e88,
.stale-cd90,
.message_center_2091,
.purple_ae05,
.paragraph_tiny_0f61,
.widget_824b,
.row_208b,
.solid_6f36,
.wrapper_71d9,
.disabled_bronze_47b9 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .tertiary_advanced_6d30 {
    padding: 8px 0;
  }
  
  .message_ea38 img {
    height: 28px;
    width: auto;
  }
  
  .accent_f441 {
    display: none !important;
  }
  
  .gold_f106 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .gold_f106 svg {
    width: 14px;
    height: 14px;
  }
  
  .heading-medium-a110 {
    padding: 6px;
  }
  
  .description_f787 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .stale-cd90,
  .slider-wide-3e88,
  .message_center_2091,
  .purple_ae05,
  .text-dirty-8675,
  .gallery_01b9,
  .gallery-selected-cc90,
  .south-0511,
  .title_motion_7d36,
  .link_bronze_01c3,
  .notification-13f3,
  .text_2c58 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .footer_22b8,
  .shadow-slow-be4a {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .picture-dynamic-f381,
  .content-cool-91e7,
  .advanced-aa1e,
  .steel_bd0f,
  .medium_0cdc,
  .sidebar-c427,
  .iron_5fe3 {
    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 */
  .carousel-hard-d389,
  .grid-easy-c3c5,
  .hero-48a4,
  .hot_8a4b,
  .image_medium_7696 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .action_6213,
  .focused-9240,
  .steel_2c9d,
  .disabled-6a5b {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .nav-tall-6c0a,
  .modal_steel_5063 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .tabs_selected_f13e,
  .thumbnail_31bf,
  .right-d5f6,
  .left-fa68 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .detail_static_bd6c,
  .footer-gas-faf1,
  .bottom_edd4,
  .disabled-stone-8334,
  .hover_e481,
  .tooltip-wood-c0fa {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .carousel-hard-d389,
  .grid-easy-c3c5,
  .hot_8a4b {
    max-width: none !important;
  }
  
  .image-a81b {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .action_6213 {
    font-size: 1.5rem !important;
  }
  
  .focused-9240 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .frame_a71d,
  .component-medium-b91b {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .steel_2c9d {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .hover-green-fb30 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .notice_48f0 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .carousel-hard-d389,
  .hot_8a4b {
    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: 1cb2 */
.shadow-element-m0 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.1;
}
