/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    /* Prevent scrolling if it's a single hero page */
    background-color: #000;
    /* Fallback */
    height: 100vh;
    width: 100vw;
    position: relative;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Align left based on the reference image */
    padding-left: 10%;
    /* Adjust based on design */
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 400px;
    /* Adjust size */
    height: auto;
    display: block;
}

/* CTA Button */
.cta-container {
    margin-top: 2rem;
}

.play-button-link {
    text-decoration: none;
    display: inline-block;
}

.play-button {
    background-color: #444;
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease, background-color 0.3s ease;
    letter-spacing: 0.5px;
}

.play-button:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    background-color: #808080;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-wrapper {
        align-items: center;
        padding-left: 0;
        text-align: center;
        justify-content: flex-start;
        padding-top: 2rem;
    }

    .logo-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo {
        max-width: 80%;
        margin: 0 auto;
    }

    .play-button {
        padding: 16px 40px;
    }
}