/* Welcome Modal Styles */
.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
}

.welcome-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.welcome-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0.5rem;
    border-bottom: none;
}

.welcome-modal-header h2 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: #1a202c;
    font-size: 1.75rem;
    font-weight: 700;
}

.welcome-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #718096;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.welcome-modal-close:hover {
    color: #1a202c;
}

.welcome-modal-body {
    padding: 0 1.5rem 1.5rem;
}

.welcome-user-identity {
    margin-bottom: 1rem;
}

.user-name-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-initial {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.2;
}

.user-points {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 0.1rem;
}

.user-status-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 0.25rem 0;
}

/* Level badge styling moved to dedicated level-badges.css file */

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid transparent;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    height: 24px;
}

.status-unregistered {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #92400e;
    border-color: #f59e0b;
}

.status-registered {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    color: #065f46;
    border-color: #10b981;
}

.purple-divider {
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
    margin: 0 0 1.5rem 0;
}

.daily-progress-section {
    margin-bottom: 1.5rem;
}

.daily-progress-section h4 {
    margin: 0 0 1rem 0;
    font-family: 'Playfair Display', serif;
    color: #1a202c;
    font-size: 1.15rem;
    font-weight: 600;
}

.daily-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.daily-stat-item {
    text-align: center;
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.daily-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #4a5568;
    line-height: 1;
}

.daily-stat-label {
    display: block;
    font-size: 0.75rem;
    color: #718096;
    margin-top: 0.25rem;
}

.motivational-message {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 8px;
    border: 1px solid rgba(252, 182, 159, 0.3);
}

.motivational-message p {
    margin: 0;
    color: #8b4513;
    font-style: italic;
    font-weight: 500;
    font-size: 0.875rem;
}

.welcome-actions {
    display: flex;
    justify-content: center;
}

.welcome-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
    width: 100%;
}

.welcome-actions .btn-primary {
    background: #4361ee;
    color: white;
}

.welcome-actions .btn-primary:hover {
    background: #3a56d4;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .welcome-modal-content {
        width: 95%;
        max-width: none;
        margin: 1rem;
    }
    
    .welcome-modal-header,
    .welcome-modal-body {
        padding: 1rem;
    }
    
    .user-name-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .user-info {
        align-items: center;
    }
    
    .user-status-row {
        justify-content: center;
    }
    
    .daily-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .daily-stat-value {
        font-size: 1.5rem;
    }
    
    .daily-stat-label {
        font-size: 0.7rem;
    }
} 