/* 
 * 水平滚动修复 - 090bet（精简版，避免裁切文字）
 */

html {
    width: 100%;
    overflow-x: clip;
    max-width: 100%;
}

body {
    width: 100%;
    overflow-x: clip;
    max-width: 100%;
    position: relative;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img,
video,
iframe,
picture {
    max-width: 100%;
    height: auto;
}

/* 表格小屏可横向滚动，不裁切 */
.info-table,
.data-table,
.stats-table,
.comparison-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* 导航区域保持可见 */
.sticky-header,
.sticky-header .container,
.main-nav {
    overflow: visible !important;
}

.mobile-menu-toggle {
    pointer-events: auto;
    z-index: 1002;
}

/* 移动端基础自适应 */
@media (max-width: 768px) {
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-content,
    .hero-modern,
    .main-content,
    .hero-text {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}