:root {
    --kickstarter-logo: url('../img/kickstarter-logo-green.avif');
}

.banner-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

@media (min-width: 768px) {
    .banner {
        height: 0;
        padding-top: 20.83%;
        background-image: url('../img/ww2-webdesk.jpg');
        background-size: 100% auto;
    }
}

@media (max-width: 767px) and (orientation: portrait) {
    .banner {
        height: 0;
        padding-top: 140%;
        background-image: url('../img/ww2-mobile.jpg');
        background-size: contain;
        background-position: top center;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .banner {
        height: 0;
        padding-top: 31.25%;
        background-image: url('../img/ww2-mobile2.jpg');
        background-size: 100% auto;
    }
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.kickstarter {
    color: #05ce78;
    font-weight: bold;
}

.kickstarter-logo {
    content: var(--kickstarter-logo);
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

.coming-soon {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.content-wrapper {
    padding-top: 3rem;
}

.email-input-group {
    max-width: 500px;
    margin: 2rem auto;
}

.subscribe-btn {
    background-color: #05ce78;
    border-color: #05ce78;
}

.subscribe-btn:hover {
    background-color: #04b669;
    border-color: #04b669;
}

.game-title {
    font-weight: 900;
    text-transform: lowercase;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .kickstarter-logo {
        max-width: 200px;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }

    .content-wrapper {
        padding-top: 1rem;
    }

    .email-input-group {
        max-width: 100%;
        padding: 0 1rem;
    }
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}

#modalMessage {
    font-size: 1.1rem;
    text-align: center;
    margin: 1rem 0;
}

.text-success {
    color: #05ce78 !important;
}

.text-danger {
    color: #dc3545 !important;
}