/* ============================================
   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 (.image-left-a047) is a descendant of
   .primary_soft_2593 (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_fadd {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".top_f41e" 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.block-e07c so it can't cause
   horizontal overflow anyway. */
.summary-9588,
.light-204b,
.wood-69e5,
.logo-8eaf,
.column-91a0,
.caption_7e9e,
.highlight_cb9d,
.lower-f854,
.link_stale_e08e,
.grid-2dba,
.tag_4fc4 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .feature_bronze_5825 {
    padding: 8px 0;
  }
  
  .detail_3fc4 img {
    height: 28px;
    width: auto;
  }
  
  .short-b14d {
    display: none !important;
  }
  
  .primary_focused_c688 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .primary_focused_c688 svg {
    width: 14px;
    height: 14px;
  }
  
  .full_656d {
    padding: 6px;
  }
  
  .slider_1c41 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .wood-69e5,
  .light-204b,
  .logo-8eaf,
  .column-91a0,
  .north-8fe4,
  .popup_d234,
  .card-yellow-2148,
  .inner-348e,
  .new_9bda,
  .tall_c031,
  .mask-inner-8f2c {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .hovered-ec6e,
  .footer_green_30bc {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .in-4e97,
  .shade-over-1e93,
  .selected-ba13,
  .alert_63a6,
  .description-29f8,
  .header-95de,
  .hero_large_50e0 {
    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 */
  .link-next-e57c,
  .input-medium-2dbe,
  .grid-green-ba4b,
  .image-0246,
  .table_small_7836 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .rough_9663,
  .notification-first-55b5,
  .widget_medium_81ee,
  .container-75ee {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .north-536c,
  .status-3843 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .feature-6b21,
  .huge_7f62,
  .info_3ec9,
  .photo_fixed_4805 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .sidebar-paper-f226,
  .thick_e5f0,
  .description_tall_83e6,
  .in-8cac,
  .photo_492c,
  .primary_76df {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .link-next-e57c,
  .input-medium-2dbe,
  .image-0246 {
    max-width: none !important;
  }
  
  .top_f41e {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .rough_9663 {
    font-size: 1.5rem !important;
  }
  
  .notification-first-55b5 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .iron-faff,
  .fresh-3c93 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .widget_medium_81ee {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .caption-prev-8b94 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .accent-1635 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .link-next-e57c,
  .image-0246 {
    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: f9aa */
.phantom-card-y4 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.0;
}
