/* ============================================
   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 (.image_f3c5) is a descendant of
   .top-c936 (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.bottom-cb0f {
  max-width: none !important;
}

/* Fix for any potential overflow elements */
/* NOTE: ".gradient_pro_4575" 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.tabs-medium-79d4 so it can't cause
   horizontal overflow anyway. */
.border_motion_fc9d,
.table_c929,
.active-north-5f30,
.video-tiny-f391,
.block_paper_6dd3,
.last_ff0a,
.down-0ed0,
.box-new-d1cf,
.active_basic_81d7,
.selected_d146,
.glass_4bd2 {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header mobile optimizations */
@media (max-width: 768px) {
  .notice-30ba {
    padding: 8px 0;
  }
  
  .focus-hard-4514 img {
    height: 28px;
    width: auto;
  }
  
  .active-black-eb77 {
    display: none !important;
  }
  
  .hidden_e1e0 {
    padding: 6px 12px !important;
    font-size: 0.8125rem !important;
    white-space: nowrap;
  }
  
  .hidden_e1e0 svg {
    width: 14px;
    height: 14px;
  }
  
  .heading_f998 {
    padding: 6px;
  }
  
  .info-rough-3c34 {
    width: 20px;
  }
}

/* Mobile-specific fixes (phones) */
@media (max-width: 768px) {
  /* Force single column layout */
  .active-north-5f30,
  .table_c929,
  .video-tiny-f391,
  .block_paper_6dd3,
  .pagination-41fe,
  .label_4f48,
  .message_pro_786b,
  .content_1cef,
  .pro-c195,
  .wrapper-9318,
  .dynamic-2e38,
  .steel-925b {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  /* Ensure tables are scrollable */
  .header-cold-b21a,
  .current_ba31 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix any fixed-width elements */
  .action-a87d,
  .stale-ada9,
  .form-simple-8f98,
  .background_6720,
  .pagination_6338,
  .video_fresh_00bd,
  .accent-advanced-b6b3 {
    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 */
  .hover-complex-3805,
  .lower_adc6,
  .pagination_d744,
  .medium_2526,
  .logo-a09a {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6,
  p, span, a, li, td, th,
  .over-8440,
  .layout-25d5,
  .purple-9de5,
  .backdrop_simple_bcc5 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  /* Fix code blocks */
  pre,
  code,
  .image_down_5255,
  .avatar-under-a71c {
    overflow-x: auto !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
  }
  
  /* Fix buttons */
  .short-7181,
  .gold_a048,
  .header-3389,
  .footer_bright_3b4f {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix flex containers */
  .widget-new-2035,
  .notice-1427,
  .texture-b48d,
  .main_4bc3,
  .plasma-6bc1,
  .tooltip-action-d576 {
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

/* Extra small screens (≤480px) */
@media (max-width: 480px) {
  /* Even more aggressive fixes */
  * {
    max-width: 100vw !important;
  }
  
  section,
  .hover-complex-3805,
  .lower_adc6,
  .medium_2526 {
    max-width: none !important;
  }
  
  .gradient_pro_4575 {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  
  /* Reduce font sizes if needed */
  .over-8440 {
    font-size: 1.5rem !important;
  }
  
  .layout-25d5 {
    font-size: 1.375rem !important;
  }
  
  /* Stack everything */
  .container_mini_e4db,
  .link_07c2 {
    flex-direction: column !important;
  }
  
  /* Smaller stat values */
  .purple-9de5 {
    font-size: 2rem !important;
  }
  
  /* Ensure score circles fit */
  .current-1b61 {
    width: 100px !important;
    height: 100px !important;
    font-size: 2.5rem !important;
  }
  
  .paragraph_0275 {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hover-complex-3805,
  .medium_2526 {
    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: fcfc */
.ghost-box-g1 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.3;
}
