/* ============================================================
   FILE: assets/css/mobile.css
   CHỨC NĂNG: Tối ưu cho mobile
   ============================================================ */

/* Tối ưu touch target */
button, 
.nav-item,
.game-item,
.rent-package,
.fab-btn {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Tối ưu font cho mobile */
html {
    -webkit-text-size-adjust: 100%;
}

/* Tối ưu scroll */
.scrollable {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Ẩn scrollbar nhưng vẫn scroll */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Safe area cho notch */
@supports (padding: max(0px)) {
    .bottom-nav {
        padding-bottom: max(8px, env(safe-area-inset-bottom));
    }
    .app-header {
        padding-top: max(10px, env(safe-area-inset-top));
    }
}

/* Landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .app-header {
        height: 50px;
        padding: 6px 12px;
    }
    .header-spacer {
        height: 50px;
    }
    .bottom-nav {
        height: 60px;
    }
    .bottom-nav-spacer {
        height: 60px;
    }
    .avatar {
        width: 30px;
        height: 30px;
    }
    .chat-fab {
        bottom: 72px;
    }
}