body {
    font-family: sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: start;
}

h1 {
    text-align: center;
}

.video-container {

    width: fit-content;    /* Shrinks the container to the video's width */
    max-width: 90%;        /* Keeps it from touching screen edges on mobile */
    margin: 40px auto;
    border: 8px solid #333;
    border-radius: 25px;
    background: #000;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    overflow: hidden;      /* Keeps the corners rounded */
}

.video-container video {
    display: block;
    width: auto;           /* Allows width to adjust based on height */
    max-width: 100%;       /* Prevents it from being wider than the container */
    max-height: 75vh;      /* LIMIT: Video will never be taller than 75% of the screen */
    object-fit: cover; /* Ensures the poster and video fill the frame perfectly */
}



iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border: none;
}



footer {
    margin-top: 50px;
    font-size: 0.75rem;
    color: gray;
    text-align: center;
}

footer a {
    color: #007aff; /* Standard app blue */
    text-decoration: none;
    font-weight: 500;
    font-size: 1.0rem;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: 5px 0; /* Tightens the space between email and company name */
}

nav {
    margin-bottom: 20px;
    text-align: center;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: blue;
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
    /* Stacks them on very small screens */
}

.store-badges img {
    height: 45px;
    /* Standard professional height */
    transition: transform 0.2s;
}

.store-badges img:hover {
    transform: scale(1.05);
}

.coming-soon {
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

@media (max-width: 400px) {
    .video-container {
        max-width: 85%;    /* Shrinks slightly so it doesn't touch the edges */
        border-width: 4px; /* Thinner border on mobile */
        border-radius: 20px;
    }
}