/* ============================================
   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 (.label_inner_a698) is a descendant of
   .header-lower-4b80 (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.alert_full_01a0 {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".search-steel-0bb8" 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.dark_3188 so it can't cause
   horizontal overflow anyway. */
.surface-0e10,
.highlight-0f48,
.glass_9175,
.badge_a2dc,
.focused-9724,
.description-under-b016,
.dropdown_f43a,
.summary-glass-5517,
.item_upper_23c2,
.frame-current-7e7b,
.input_6996 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .solid_95d8 {
    padding: 8px 0;
  }
  
  .form_middle_8be8 img {
    height: 28px;
    width: auto;
  }
  
  .active-narrow-6ab0 {
    display: none !important;
  }
  
  .heading_8f47 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .heading_8f47 svg {
    width: 14px;
    height: 14px;
  }
  
  .video_pink_4c72 {
    padding: 6px;
  }
  
  .outer-8594 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .glass_9175,
  .highlight-0f48,
  .badge_a2dc,
  .focused-9724,
  .out_014e,
  .section-purple-abfa,
  .primary-right-cd5c,
  .summary_lower_1bdf,
  .hidden-clean-3291,
  .focus_220d,
  .accent-7be1,
  .mask_63b6 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .active-silver-0793,
  .wrapper-center-9476 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .logo_bright_cc21,
  .carousel_white_a8d3,
  .glass_f6f7,
  .advanced_3ada,
  .avatar-active-db92,
  .large-6ad4,
  .liquid-c28d {
    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 */
  .gallery-39b4,
  .tiny-4313,
  .gradient-4715,
  .shade_dirty_5ade,
  .filter-9ba7 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .light-b89a,
  .container-brown-f26c,
  .shade_516c,
  .green-2e8e {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .image_stale_583f,
  .hard-076b {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .tooltip-0127,
  .static-34e5,
  .item-brown-5946,
  .inner-a785 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .thumbnail-d068,
  .green-cdc2,
  .white_809e,
  .banner-ab0f,
  .stone-5b4a,
  .center_5761 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .gallery-39b4,
  .tiny-4313,
  .shade_dirty_5ade {
    max-width: none !important;
  }
  
  .search-steel-0bb8 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .light-b89a {
    font-size: 1.5rem !important;
  }
  
  .container-brown-f26c {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .slow-9e4f,
  .input-ad61 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .shade_516c {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .selected_048d {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .widget_cool_1e02 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .gallery-39b4,
  .shade_dirty_5ade {
    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: c453 */
.shadow-element-o7 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.2;
}
