
@media screen and (max-width: 767px) {
    .khue-wrapper {
        display: none !important;
    }
}

/* Chỉ hiển thị trên desktop */
@media screen and (min-width: 768px) {
    .khue-wrapper {
        position: fixed;
        width: 100%;
        margin: 0 auto;
        background: #1a1a2e;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        height: 100vh;
        z-index: 9999;
        left: 0;
        top: 0;
    }
    
    #main, #wrapper{
        display: none;
    }
    
    .khue-wrapper.while-background{
        background: #fff;
    }
    
    .khue-wrapper[data-mode="full"] {
        height: 100vh;
        min-height: 100vh;
    }
    
    .khue-wrapper[data-mode="compact"] {
        height: 500px;
        min-height: 400px;
    }
    
    .khue-wrapper[data-mode="minimal"] {
        height: 400px;
        min-height: 300px;
        padding: 10px;
    }
    
    .khue-game-content {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .khue-game-content iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 8px;
    }
}

