.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.coming-soon-content {
    max-width: 500px;
    padding: 2rem;
}

.coming-soon-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.coming-soon-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.coming-soon-timer {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.skip-button {
    padding: 0.8rem 2rem;
    background-color: white;
    color: black;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.skip-button:hover {
    transform: translateY(-3px);
    background-color: #f0f0f0;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}