body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#slideshow-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#slide {
    width: 100%;
    height: 100%;
    background-size: contain; /* Hoặc 'cover' tùy sở thích */
    background-position: center;
    background-repeat: no-repeat;
}

/* Trạng thái mặc định của nút */
#start-btn {
    position: absolute;
    z-index: 10;
    padding: 20px 40px;
    font-size: 24px;
    cursor: pointer;
    background: #fff;
    border: 4px solid transparent; /* Để sẵn viền nhưng trong suốt */
    border-radius: 50px;
    transition: all 0.3s ease;
    outline: none; /* Tắt viền mặc định xấu xí của trình duyệt */
}

/* Hiệu ứng khi Remote TV di chuyển tới (Focus) */
#start-btn:focus, #start-btn:hover {
    background: #ff4757; /* Đổi màu nền sang đỏ hoặc màu nổi bật */
    color: white;
    border: 4px solid #fff; /* Hiện viền trắng dày */
    transform: scale(1.2); /* Phóng to nút một chút */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6); /* Thêm hào quang */
}


#controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

#fullscreen-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

#fullscreen-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Ẩn nút bắt đầu ban đầu khi đã vào chế độ chơi */
#start-btn {
    /* (Giữ nguyên code cũ của bạn) */
    transition: opacity 0.5s;
}
