/* 平板端样式 (769px - 1024px) */

/* 禁用触摸高亮 */
@media (min-width: 769px) and (max-width: 1024px) {
    button,
    .ctrl-btn,
    .mode-btn,
    .toolbar-btn,
    .nav-tab,
    .category-btn,
    .mobile-mode-btn,
    .words-tab,
    .btn-play,
    .btn-remove,
    .video-card,
    .recent-card,
    .login-card button,
    .login-card input,
    .register-note a,
    .friend-link {
        -webkit-tap-highlight-color: transparent !important;
        outline: none !important;
    }
}

/* 平板端视频播放器 */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-container video {
        height: auto !important;
        aspect-ratio: 16 / 9;
        max-height: 45vh;
        width: 100%;
        object-fit: cover;
    }
}

/* 平板端播放控件 - 最小间距 */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-controls {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 2px !important;
        padding: 6px 8px !important;
    }
    
    .ctrl-btn {
        padding: 2px 6px !important;
        font-size: 10px !important;
    }
    
    .ctrl-btn i {
        font-size: 11px !important;
    }
}
