.app-starting {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    background: #0f1116;
    color: #e5e7eb;
    z-index: 9999;
}

.app-starting__spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: #3dcb6c;
    border-radius: 50%;
    animation: app-starting-spin 1s linear infinite;
}

.app-starting__text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

@keyframes app-starting-spin {
    to { transform: rotate(360deg); }
}

.components-reconnect-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(15, 17, 22, 0.85);
    color: #e5e7eb;
    z-index: 10000;
    padding: 24px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.components-reconnect-modal.components-reconnect-show,
.components-reconnect-modal.components-reconnect-failed,
.components-reconnect-modal.components-reconnect-rejected {
    display: flex;
}

.components-reconnect__content {
    display: none;
    max-width: 420px;
    background: #1a1a27;
    border: 1px solid #292838;
    border-radius: 12px;
    padding: 20px 24px;
}

.components-reconnect-modal.components-reconnect-show .components-reconnect__show,
.components-reconnect-modal.components-reconnect-failed .components-reconnect__failed,
.components-reconnect-modal.components-reconnect-rejected .components-reconnect__rejected {
    display: block;
}
