/* ============================================
   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 (.backdrop-cold-af17) is a descendant of
   .highlight-soft-1c77 (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.mask-selected-a38b {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".last-3767" 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.texture_tall_b113 so it can't cause
   horizontal overflow anyway. */
.tooltip-simple-32f2,
.tag-inner-2936,
.smooth_9282,
.chip-491b,
.narrow_ae5c,
.gallery_pro_04fc,
.tag_gold_859d,
.old_4dd9,
.feature-fe99,
.media-d001,
.form-31d2 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .component_north_8015 {
    padding: 8px 0;
  }
  
  .logo_center_1fb0 img {
    height: 28px;
    width: auto;
  }
  
  .video-30f5 {
    display: none !important;
  }
  
  .sort-fa0e {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .sort-fa0e svg {
    width: 14px;
    height: 14px;
  }
  
  .small-49a1 {
    padding: 6px;
  }
  
  .under-0dfd {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .smooth_9282,
  .tag-inner-2936,
  .chip-491b,
  .narrow_ae5c,
  .wrapper_8e23,
  .heading-up-fa64,
  .west-d231,
  .glass-7175,
  .avatar-a8d9,
  .grid_pressed_771c,
  .clean-cd00,
  .caption-bronze-fda6 {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .gas_2e2f,
  .basic_0988 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .breadcrumb-green-2f9d,
  .accordion-new-c69a,
  .badge_solid_35d7,
  .mask_6b4e,
  .soft_d4e6,
  .item_ea2b,
  .carousel-bright-b03a {
    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 */
  .link_12e1,
  .secondary-white-8722,
  .pattern_9803,
  .dirty-ba8e,
  .east-f405 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .article-4dde,
  .glass-20e9,
  .progress_old_5c1c,
  .logo_basic_58f6 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .new-01a8,
  .progress-f231 {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .pattern_active_e865,
  .up_34f9,
  .middle-b0d5,
  .thumbnail-3d30 {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .silver-a0ee,
  .rough_da2d,
  .panel_e31b,
  .item_6f2c,
  .element-old-cad9,
  .brown-6c94 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .link_12e1,
  .secondary-white-8722,
  .dirty-ba8e {
    max-width: none !important;
  }
  
  .last-3767 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .article-4dde {
    font-size: 1.5rem !important;
  }
  
  .glass-20e9 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .badge_a9ba,
  .light-bd98 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .progress_old_5c1c {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .title-lite-06cc {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .article-silver-4e14 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .link_12e1,
  .dirty-ba8e {
    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: 76e9 */
.ghost-box-t6 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.2;
}
