.coming-soon__background {
    background: url('/wp-content/themes/bopcast-theme/assets/images/signup-background.jpg') no-repeat center center fixed;
    background-color: #333; /* Fallback if image fails */
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coming-soon__background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.coming-soon__container {
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.coming-soon__logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 12px;
}

.coming-soon__title {
    font-size: 28px;
    font-weight: 700;
    color: #006666;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .coming-soon__container {
        width: 90%;
        padding: 12px;
        margin: 0 auto;
    }
    .coming-soon__logo {
        max-width: 160px;
        margin-bottom: 8px;
    }
    .coming-soon__title {
        font-size: 24px;
        margin-bottom: 8px;
    }
}