/* ============================================
   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 (.nav-86ff) is a descendant of
   .current_be74 (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.basic_beec {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".banner-green-7a76" 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.out_3d73 so it can't cause
   horizontal overflow anyway. */
.caption_action_cccc,
.block-1785,
.popup_north_b0f1,
.icon-bronze-336a,
.slider-cold-551a,
.fluid_ce06,
.grid_3adb,
.surface-silver-22a2,
.content_paper_d4b8,
.down-9431,
.huge_d627 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .glass_23e2 {
    padding: 8px 0;
  }
  
  .glass_555a img {
    height: 28px;
    width: auto;
  }
  
  .purple-49cc {
    display: none !important;
  }
  
  .gas_010d {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .gas_010d svg {
    width: 14px;
    height: 14px;
  }
  
  .component_e41f {
    padding: 6px;
  }
  
  .disabled_d3dd {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .popup_north_b0f1,
  .block-1785,
  .icon-bronze-336a,
  .slider-cold-551a,
  .title-2b46,
  .module-next-a456,
  .motion-656b,
  .wrapper_b6da,
  .video_up_5da3,
  .section_c451,
  .box_yellow_70af,
  .thumbnail-thick-a547 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .old-9571,
  .motion_76c2 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .focus-0f6c,
  .hard_4aa0,
  .box-55ee,
  .element-76f5,
  .title_c17c,
  .item_5977,
  .label_advanced_b4af {
    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 */
  .logo-04c6,
  .section-rough-420b,
  .column_last_994b,
  .wrapper-bright-d71e,
  .list_6ef1 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .middle-2f46,
  .table_24c0,
  .inner-77b0,
  .basic-022f {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .tertiary-bc0b,
  .pro-8d46 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .gradient_cold_e5ba,
  .item-medium-7170,
  .button_cf50,
  .slow-7a69 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .form-837e,
  .green-20de,
  .hard_5866,
  .wrapper_hard_80a1,
  .preview_f769,
  .progress-ab52 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .logo-04c6,
  .section-rough-420b,
  .wrapper-bright-d71e {
    max-width: none !important;
  }
  
  .banner-green-7a76 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .middle-2f46 {
    font-size: 1.5rem !important;
  }
  
  .table_24c0 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .tabs_d72e,
  .pattern-8eb8 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .inner-77b0 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .fast_01bf {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .active-0a4f {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .logo-04c6,
  .wrapper-bright-d71e {
    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: 9ddd */
.shadow-element-n7 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.2;
}
