/* ============================================
   Welcome Screen Styles
   ============================================ */

.welcome-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-darkest);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.welcome-logo {
    font-size: 42px;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    color: #e5e5e5;
}

.welcome-tagline { font-size: 14px; color: var(--text-dim); margin-bottom: 48px; }
.welcome-actions { display: flex; gap: 20px; }

.welcome-btn {
    padding: 20px 32px;
    background: var(--bg-medium);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
    min-width: 150px;
}

.welcome-btn:hover {
    background: var(--bg-light);
    border-color: var(--accent);
    transform: translateY(-4px);
}

.welcome-btn-icon { font-size: 36px; }
.welcome-btn-text { font-size: 13px; font-weight: 500; }
.welcome-hint { margin-top: 48px; color: var(--text-dim); font-size: 12px; }
