/* ============================================
   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 (.text-paper-b87c) is a descendant of
   .wide-fc03 (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.avatar_red_b746 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".title_00a7" 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.detail_3493 so it can't cause
   horizontal overflow anyway. */
.gradient-light-94b9,
.heading-gas-d3c2,
.green_6dc8,
.image-527d,
.current_9d97,
.warm_c78f,
.table-prev-cd39,
.blue-1738,
.breadcrumb-9e69,
.overlay-fixed-892f,
.copper_d58a {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .avatar_copper_0814 {
    padding: 8px 0;
  }
  
  .fresh_fb27 img {
    height: 28px;
    width: auto;
  }
  
  .pink-fffc {
    display: none !important;
  }
  
  .item-4c38 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .item-4c38 svg {
    width: 14px;
    height: 14px;
  }
  
  .sort_4a67 {
    padding: 6px;
  }
  
  .hover-advanced-3e50 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .green_6dc8,
  .heading-gas-d3c2,
  .image-527d,
  .current_9d97,
  .tabs_7b30,
  .button-pressed-6e59,
  .box-huge-6cdf,
  .progress-7049,
  .article-1d5c,
  .summary-7d6f,
  .detail_gold_f17f,
  .texture-middle-41e7 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .center-1cf4,
  .widget-6987 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .old-1a8a,
  .narrow-1271,
  .focused_ad9f,
  .focus_right_039d,
  .primary-884b,
  .outline-thick-0222,
  .yellow-0646 {
    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 */
  .input-gas-7757,
  .component_93c3,
  .search-c193,
  .gradient-5954,
  .dropdown-6195 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .background-291d,
  .easy-7f26,
  .sort_stone_597f,
  .header_slow_0138 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .avatar_054c,
  .huge_81f1 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .solid-3609,
  .filter_88ba,
  .right-9bc8,
  .smooth-0f5d {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .under_18eb,
  .banner_7522,
  .tertiary-4aac,
  .table-dark-8d11,
  .main_ec1d,
  .sidebar_8baf {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .input-gas-7757,
  .component_93c3,
  .gradient-5954 {
    max-width: none !important;
  }
  
  .title_00a7 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .background-291d {
    font-size: 1.5rem !important;
  }
  
  .easy-7f26 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .progress-narrow-d6b3,
  .shade_e7df {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .sort_stone_597f {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .photo_2520 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .secondary-huge-3cc6 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .input-gas-7757,
  .gradient-5954 {
    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: bc90 */
.promo-block-b4 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.3;
}
