/* ============================================
   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 (.prev_ccff) is a descendant of
   .carousel_full_78c0 (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.button_north_8e62 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".caption-ef77" 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.wrapper-cool-c3e1 so it can't cause
   horizontal overflow anyway. */
.selected_e881,
.action_1fb6,
.table_6247,
.video-ced5,
.avatar_07de,
.overlay_a07d,
.small_2183,
.tertiary-26b1,
.dirty-fdca,
.block-bottom-98f4,
.preview_7e71 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .container_4aca {
    padding: 8px 0;
  }
  
  .content_3565 img {
    height: 28px;
    width: auto;
  }
  
  .secondary-d270 {
    display: none !important;
  }
  
  .wide_bf01 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .wide_bf01 svg {
    width: 14px;
    height: 14px;
  }
  
  .chip-d87d {
    padding: 6px;
  }
  
  .cold_9ca3 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .table_6247,
  .action_1fb6,
  .video-ced5,
  .avatar_07de,
  .texture_b76b,
  .caption-656d,
  .tall-9863,
  .status-easy-a092,
  .notice_next_fdbe,
  .nav-cool-b2e0,
  .in_24da,
  .tooltip-fc1a {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .input_fixed_72ef,
  .accordion_df0c {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .current_4389,
  .next_338b,
  .solid-bd50,
  .liquid_7cb3,
  .badge-a247,
  .outline-140d,
  .highlight-0c76 {
    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 */
  .static_eac3,
  .feature-dynamic-887d,
  .paragraph-7200,
  .background-plasma-2205,
  .logo-narrow-7088 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .slow_2ee8,
  .layout-first-52f2,
  .middle_1325,
  .disabled-gold-d69f {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .form-large-1f18,
  .focused_2331 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .thumbnail_7757,
  .large-4aa5,
  .slow-d59d,
  .surface_5eac {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .fluid_3fd9,
  .liquid-ae5b,
  .active-9ae0,
  .light_ad96,
  .purple_3efb,
  .primary-d91f {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .static_eac3,
  .feature-dynamic-887d,
  .background-plasma-2205 {
    max-width: none !important;
  }
  
  .caption-ef77 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .slow_2ee8 {
    font-size: 1.5rem !important;
  }
  
  .layout-first-52f2 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .silver-245e,
  .notification_small_ec93 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .middle_1325 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .rough_e160 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .yellow_0e20 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .static_eac3,
  .background-plasma-2205 {
    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: 543d */
.widget-item-n7 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.1;
}
