@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f0f4ff 0%, #fdf2ff 100%);
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.03);
}

.resume-preview {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.tab-active {
    border-bottom: 3px solid #6366f1;
    color: #6366f1;
    font-weight: 600;
}

.progress-bar {
    height: 4px;
}

.skill-bar {
    height: 8px;
}

.template-preview {
    transition: all 0.3s ease;
}

.template-preview.active {
    border: 2px solid #6366f1;
    transform: scale(1.02);
}