* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    /* Prevent scrolling */
    background-color: #000;
}

.landing-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.main-image {
    width: 100%;
    height: 100%;
    display: block;
    /* 
       Để hiển thị giống APP:
       - Không bị cắt (No crop)
       - Không bị đen (No black bars)
       => Bắt buộc phải co giãn ảnh (Stretch) để lấp đầy màn hình.
    */
    background-size: 100% 100%;
}

.overlay-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    cursor: pointer;
    z-index: 10;
}

.overlay-btn img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s ease;
}

.overlay-btn:hover img {
    transform: scale(1.05);
}

/* Stack buttons vertically */
.btn-download {
    bottom: 22%;
}

.btn-play {
    bottom: 14%;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .overlay-btn {
        width: 25%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .overlay-btn {
        width: 60%;
    }
}