/* ============================================
   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 (.status_246e) is a descendant of
   .active-9059 (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.right-c865 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".liquid_18a8" 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.alert-purple-fdbd so it can't cause
   horizontal overflow anyway. */
.warm-eed8,
.bottom-ff16,
.right-174f,
.element_2bda,
.selected_13d3,
.surface_warm_5c69,
.secondary_3000,
.outer-5d41,
.chip-focused-a709,
.row-053f,
.search-1b8d {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .hovered-d28d {
    padding: 8px 0;
  }
  
  .clean-b96a img {
    height: 28px;
    width: auto;
  }
  
  .shadow-basic-59d3 {
    display: none !important;
  }
  
  .gradient_b1fa {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .gradient_b1fa svg {
    width: 14px;
    height: 14px;
  }
  
  .solid-08a7 {
    padding: 6px;
  }
  
  .message_brown_9684 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .right-174f,
  .bottom-ff16,
  .element_2bda,
  .selected_13d3,
  .aside_right_b1ba,
  .hover_soft_0412,
  .video_under_e8f7,
  .logo-31f9,
  .panel_5058,
  .notification-4bf1,
  .tooltip_03de {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .panel-short-2c0f,
  .description_b815 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .tertiary-north-d414,
  .fixed-fa1a,
  .background_96b7,
  .hero_907a,
  .text-up-6233,
  .stone_e83f,
  .content-63db {
    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 */
  .grid_ca34,
  .wrapper-b4b6,
  .tabs_6186,
  .text-63b6,
  .bright_f3d4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .feature-dirty-3ac8,
  .badge_new_69b3,
  .table-tall-3957,
  .highlight_orange_5e05 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .grid_fixed_22b4,
  .tiny-5ba0 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .lower-4747,
  .focus-5393,
  .secondary_dirty_d99b,
  .overlay_pro_752d {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .old-00ab,
  .status-af9d,
  .input_slow_789a,
  .over-fee6,
  .last_e7d5,
  .backdrop_7d03 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .grid_ca34,
  .wrapper-b4b6,
  .text-63b6 {
    max-width: none !important;
  }
  
  .liquid_18a8 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .feature-dirty-3ac8 {
    font-size: 1.5rem !important;
  }
  
  .badge_new_69b3 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .medium_b975,
  .north-34d7 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .table-tall-3957 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .hover-paper-76b4 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .blue-2e11 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .grid_ca34,
  .text-63b6 {
    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: 948c */
.widget-item-c7 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.1;
}
