/* Simple Coming Soon Page Styles */

.simple-coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fafbfc 0%, #f4f6f8 100%);
    padding: 2rem;
}

.simple-container {
    text-align: center;
}

.simple-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark, #1f2937);
    margin: 0;
    font-family: var(--font-family-primary, 'Inter', sans-serif);
    letter-spacing: -0.025em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .simple-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .simple-coming-soon {
        padding: 1rem;
    }
    
    .simple-title {
        font-size: 2.5rem;
    }
}