body {
    margin: 0px;
    background: black;
    color: white;
    font-family: Verdana, sans-serif;
    text-align: center;
}

.background {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/background_vert.jpg') no-repeat center center/cover;
}

.background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, black 100%);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 20px;
}

.logo {
    max-width: 120px;
    height: auto;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 20px 20px 20px;
}

.video-container video {
    width: 80%;
    max-width: 800px;
    height: auto;
    border-radius: 10px; /* Optional: Adds rounded corners */
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0px;
}

.action-button {
    border: 6px solid white;
    color: white;
    padding: 15px 30px;
    font-family: Verdana, sans-serif;
    font-weight: bold;
    font-size: 2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    text-shadow: 0px 0px 10px rgb(255 255 255 / 80%);
    box-shadow: 0px 0px 20px rgb(255 255 255 / 80%);
}

.action-button:hover {
    transform: scale(1.05);
}

.footer {
    color: #fff;
    text-align: center;
    width: 100%;
    margin: 30px 0px 50px 0px;
}

.footer h2 {
    font-size: 1.5rem;
}

.footer a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    margin: 0 10px;
}

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

.text-shadow {
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo {
        width: 80px;
    }
    .logo-container {
        margin-top: 20px;
    }
    .footer {
        margin: 0px 0px 50px 0px;
    }
    .footer h2 {
        font-size: 1.0rem;
    }
    .footer a {
        color: white;
        text-decoration: none;
        font-size: 0.75rem;
        margin: 0 10px;
    }
    .video-container video {
        width: 100%;
        height: auto;
    }
    .button-container {
       margin: 40px 0px;
    }
    .action-button {
        z-index: 1000;
        max-width: 150px; /* Smaller button for mobile */
    }
}
