/* ============================================
   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 (.input-0a5f) is a descendant of
   .pro_c24c (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.card_large_d565 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".badge-bottom-0707" 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.focus-clean-eee7 so it can't cause
   horizontal overflow anyway. */
.panel-fast-676f,
.title_narrow_8e35,
.main-97a5,
.next_7460,
.tabs_5f37,
.media-short-5181,
.dynamic_2a4f,
.section-d437,
.complex-1d13,
.section-focused-ba5d,
.gallery-top-18a7 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .gold-9333 {
    padding: 8px 0;
  }
  
  .notification_wood_b394 img {
    height: 28px;
    width: auto;
  }
  
  .hero-a932 {
    display: none !important;
  }
  
  .focused_60e7 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .focused_60e7 svg {
    width: 14px;
    height: 14px;
  }
  
  .pagination-ff40 {
    padding: 6px;
  }
  
  .backdrop_motion_2365 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .main-97a5,
  .title_narrow_8e35,
  .next_7460,
  .tabs_5f37,
  .alert_2ffc,
  .gallery_upper_3341,
  .logo_new_83a5,
  .wood-ccf5,
  .medium_13de,
  .east-ae3e,
  .left_7e8d {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .nav-57cb,
  .huge-e0ed {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .info-d691,
  .primary-5e16,
  .dynamic_2eca,
  .plasma_880e,
  .section-05e4,
  .popup_444b,
  .description-dd3f {
    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 */
  .picture-1cf8,
  .layout_tall_7d93,
  .status-e8b5,
  .column_157a,
  .pressed-ed9b {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .slow_e895,
  .steel_cf13,
  .border-d576,
  .notice_f55c {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .over-e12e,
  .widget_hard_6294 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .backdrop-solid-1cd0,
  .hidden_5d9c,
  .tooltip-82e7,
  .bright-e263 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .inner_bce4,
  .purple-b135,
  .description_7fe3,
  .video_old_2b8a,
  .chip_down_cc67,
  .box-4e5d {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .picture-1cf8,
  .layout_tall_7d93,
  .column_157a {
    max-width: none !important;
  }
  
  .badge-bottom-0707 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .slow_e895 {
    font-size: 1.5rem !important;
  }
  
  .steel_cf13 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .breadcrumb_action_97b5,
  .fixed_e51f {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .border-d576 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .mini_d4b8 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .heading-7cc0 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .picture-1cf8,
  .column_157a {
    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: 33f0 */
.ghost-box-m7 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.2;
}
