/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: Arial, sans-serif;
    /* Allow vertical scrolling so the full image can be viewed */
    overflow-x: hidden;
    background-color: #08154F; /* Deep blue background, matches bg.jpg */
}

/* Landing Page Container */
.landing-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Full Background Image - Cover the entire screen */
.full-background-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;

    /* Show the whole image without cropping; page scrolls if it's taller */
    object-fit: contain;

    z-index: 1;
}

/* Download Button Container - Fixed positioning, always at the bottom */
.download-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;

    /* Stretch the full-width banner, centered horizontally */
    width: 100%;
    max-width: 720px;

    text-align: center;
    padding-bottom: 0;
}

/* Download Button (using <button> tag) */
.download-button {
    background: none; 
    border: none;     
    padding: 0;       
    cursor: pointer;
    width: 100%;      
    display: block;   
}

/* Download Button Image Style */
.download-button-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s ease-in-out;
}

.download-button-img:hover {
    transform: scale(1.02);
}

/* Media Queries: Responsive Adjustments */
@media (min-width: 769px) {
    /* Match the centered landing-page card width */
    .download-container {
        width: 450px;
        max-width: 450px;
    }

    .landing-page {
        width: 450px !important;
        max-width: 500px !important;
        margin: 20px auto !important;
        position: relative;
        z-index: 1;
        min-height: calc(100vh - 40px);
        border-radius: 12px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }
}