.coming-soon-container {
    position: relative;
    width: 100%;
    min-height: 50vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 673px;
    gap: 16px;
}

.coming-soon-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 58px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0;
}

.coming-soon-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
    color: #808080;
    margin: 0;
}

/* ✅ Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 32px;
        line-height: 40px;
    }

    .coming-soon-text {
        font-size: 14px;
        line-height: 18px;
    }
}

