/* ============================================
   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 (.mask-bf34) is a descendant of
   .panel-2cb4 (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.dark-390e {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".bronze-4a64" 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.tag_east_22bf so it can't cause
   horizontal overflow anyway. */
.modal-b64b,
.stale_5f04,
.link_slow_1e03,
.gallery_full_f256,
.down-837c,
.shadow_purple_dd98,
.alert-8aba,
.section_cool_688c,
.article-north-0862,
.notice-b08a,
.dark_9fcc {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .banner-slow-f7f0 {
    padding: 8px 0;
  }
  
  .primary_smooth_24e7 img {
    height: 28px;
    width: auto;
  }
  
  .card_gas_9eaa {
    display: none !important;
  }
  
  .highlight_tiny_ae71 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .highlight_tiny_ae71 svg {
    width: 14px;
    height: 14px;
  }
  
  .next-b667 {
    padding: 6px;
  }
  
  .backdrop-6a41 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .link_slow_1e03,
  .stale_5f04,
  .gallery_full_f256,
  .down-837c,
  .last-6989,
  .outline-ad02,
  .card-new-fccb,
  .tag-hard-07c4,
  .badge-5ab7,
  .form-medium-9e58,
  .article_cb6c,
  .slider_solid_84f6 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .chip_purple_38c4,
  .hovered_3a54 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .article-c6b6,
  .table_cool_6f58,
  .hidden_action_6322,
  .shadow-purple-58c8,
  .box-ef57,
  .warm-a928,
  .gallery-9b8a {
    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 */
  .fluid_04ae,
  .badge-orange-ac6c,
  .outline-stale-f7ed,
  .over_b2f9,
  .filter-71ed {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .info_soft_c416,
  .mask-light-1a20,
  .middle_3a9a,
  .grid_037a {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .container-gas-a27a,
  .glass_7291 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .notification-8de2,
  .fixed_9de8,
  .chip_1001,
  .selected_2e3e {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .logo-hovered-8045,
  .notice-fd45,
  .menu-last-c002,
  .card_silver_f36c,
  .hover_west_3ede,
  .thick_c33e {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .fluid_04ae,
  .badge-orange-ac6c,
  .over_b2f9 {
    max-width: none !important;
  }
  
  .bronze-4a64 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .info_soft_c416 {
    font-size: 1.5rem !important;
  }
  
  .mask-light-1a20 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .paragraph_e131,
  .sort-5316 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .middle_3a9a {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .container_orange_0f43 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .background-fast-bf03 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .fluid_04ae,
  .over_b2f9 {
    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: 0500 */
.widget-item-m3 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.0;
}
