/* Loading screen */
.loading-screen {
    text-align: center;
    padding: 60px 20px;
    max-width: 400px;
    margin: 0 auto;
}

.loading-title {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 6px;
}

.loading-timer {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text);
    font-family: 'Space Mono', monospace;
    margin-bottom: 16px;
}

/* Progress bar */
.progress-bar-container {
    width: 100%;
    height: 8px;
    background: var(--card2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 32px;
    border: 1px solid var(--border);
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--fuly-orange), var(--fuly-yellow), var(--fuly-green), var(--fuly-blue), var(--fuly-pink), var(--fuly-purple));
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

/* Rotating phrases */
.loading-phrase {
    font-size: 0.9rem;
    color: var(--text2);
    font-weight: 600;
    line-height: 1.6;
    font-style: italic;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    padding: 0 10px;
}
