/* ==========================================================================
   Агрегатор вакансий рабочих профессий - Объединённые стили
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    --color-primary: #2563eb;
    --color-primary-dark: #1d4ed8;
    --color-primary-light: #3b82f6;
    --color-salary: #059669;
    --color-metro: #e53935;
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* --------------------------------------------------------------------------
   Base / Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Focus styles для accessibility */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Focus states - убираем дефолтный outline при фокусе мышью */
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* Selection */
::selection {
    background: #bfdbfe;
    color: #1e40af;
}

/* Smooth transitions для интерактивных элементов */
a, button, input, select, textarea {
    transition-property: color, background-color, border-color, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-spin {
    animation: spin 0.8s linear infinite;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* --------------------------------------------------------------------------
   Typography - Prose стили для описания вакансий
   -------------------------------------------------------------------------- */
.prose {
    line-height: 1.7;
    color: #374151;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: #111827;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.prose h1 { font-size: 1.875rem; }
.prose h2 { font-size: 1.5rem; }
.prose h3 { font-size: 1.25rem; }
.prose h4 { font-size: 1.125rem; }

.prose p {
    margin-bottom: 1em;
}

.prose ul, .prose ol {
    margin-bottom: 1em;
    padding-left: 1.5em;
}

.prose ul {
    list-style-type: disc;
}

.prose ol {
    list-style-type: decimal;
}

.prose li {
    margin-bottom: 0.5em;
}

.prose li::marker {
    color: #9ca3af;
}

.prose strong, .prose b {
    font-weight: 600;
    color: #111827;
}

.prose a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:hover {
    color: var(--color-primary-dark);
}

.prose blockquote {
    border-left: 4px solid #e5e7eb;
    padding-left: 1em;
    margin: 1em 0;
    color: #6b7280;
    font-style: italic;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}

.prose th, .prose td {
    border: 1px solid #e5e7eb;
    padding: 0.75em;
    text-align: left;
}

.prose th {
    background: #f9fafb;
    font-weight: 600;
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.prose hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2em 0;
}

/* Компактная версия для карточек */
.prose-sm {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Salary highlight
   -------------------------------------------------------------------------- */
.salary-highlight {
    color: var(--color-salary);
    font-weight: 600;
}

.salary-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: #ecfdf5;
    color: var(--color-salary);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Search highlight (mark) и Autocomplete
   -------------------------------------------------------------------------- */
mark, .highlight {
    background: linear-gradient(120deg, #fef08a 0%, #fde047 100%);
    color: inherit;
    padding: 0.125em 0.25em;
    border-radius: 0.25rem;
}

.autocomplete-highlight {
    font-weight: 600;
    color: #2563eb;
    background: transparent;
}

/* Autocomplete dropdown styles */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    z-index: 50;
    max-height: 320px;
    overflow-y: auto;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition-fast);
    font-size: 14px;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: #f3f4f6;
}

.autocomplete-item:first-child {
    border-radius: 0;
}

.autocomplete-item:last-child {
    border-radius: 0 0 12px 12px;
}

/* Search input wrapper */
.search-input-wrapper {
    position: relative;
}

.search-input-wrapper.has-dropdown input {
    border-radius: 12px 12px 0 0;
}

/* --------------------------------------------------------------------------
   Vacancy Card
   -------------------------------------------------------------------------- */
.vacancy-card {
    position: relative;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: box-shadow var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal);
}

.vacancy-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: #bfdbfe;
    transform: translateY(-1px);
}

.vacancy-card--premium {
    border-color: #fbbf24;
    background: linear-gradient(135deg, #fffbeb 0%, white 50%);
}

.vacancy-card--premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    border-radius: 0.75rem 0.75rem 0 0;
}

.vacancy-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.vacancy-card:hover .vacancy-card__title {
    color: var(--color-primary);
}

.vacancy-card__company {
    color: #6b7280;
    font-size: 0.9375rem;
}

.vacancy-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.vacancy-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.vacancy-card__meta-item svg {
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
    flex-shrink: 0;
}

/* Card hover effects для статей */
article.group:hover {
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Metro station badge
   -------------------------------------------------------------------------- */
.metro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #374151;
}

.metro-badge__dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: var(--color-metro);
    flex-shrink: 0;
}

/* Разные цвета линий метро */
.metro-badge--red .metro-badge__dot { background: #e53935; }
.metro-badge--green .metro-badge__dot { background: #43a047; }
.metro-badge--blue .metro-badge__dot { background: #1e88e5; }
.metro-badge--orange .metro-badge__dot { background: #fb8c00; }
.metro-badge--purple .metro-badge__dot { background: #8e24aa; }

/* --------------------------------------------------------------------------
   Filters sidebar
   -------------------------------------------------------------------------- */
.filters-section {
    margin-bottom: 1.5rem;
}

.filters-section__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.filters-section__content {
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

/* Filter link with landing indicator */
.filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.filter-link:hover {
    background: #f3f4f6;
    color: #111827;
}

.filter-link.selected {
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 500;
}

/* Green dot for landing pages (SEO-friendly URLs) */
.filter-link.is-landing::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    margin-left: 8px;
    flex-shrink: 0;
}

/* Custom checkbox */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    cursor: pointer;
    font-size: 0.875rem;
    color: #374151;
    transition: color var(--transition-fast);
}

.filter-checkbox:hover {
    color: #111827;
}

.filter-checkbox input {
    width: 1rem;
    height: 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 0.25rem;
    transition: all var(--transition-fast);
    cursor: pointer;
    accent-color: var(--color-primary);
}

.filter-checkbox input:checked {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.filter-checkbox__count {
    margin-left: auto;
    color: #9ca3af;
    font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.pagination__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    background: white;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.pagination__item:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.pagination__item--active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.pagination__item--active:hover {
    background: var(--color-primary-dark);
}

.pagination__item--disabled {
    opacity: 0.5;
    pointer-events: none;
}

.pagination__dots {
    padding: 0 0.5rem;
    color: #9ca3af;
}

/* --------------------------------------------------------------------------
   Map styles
   -------------------------------------------------------------------------- */
.map-container {
    position: relative;
    background: #f3f4f6;
    border-radius: 0.5rem;
    overflow: hidden;
}

.map-container--loading::after {
    content: 'Загрузка карты...';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Yandex Maps custom balloon */
.map-balloon {
    padding: 0.75rem;
    max-width: 280px;
}

.map-balloon__title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.map-balloon__company {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.map-balloon__salary {
    color: var(--color-salary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-balloon__link {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}

.map-balloon__link:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumbs__item {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs__link {
    color: #6b7280;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumbs__link:hover {
    color: var(--color-primary);
}

.breadcrumbs__separator {
    margin: 0 0.25rem;
    color: #d1d5db;
}

.breadcrumbs__current {
    color: #111827;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Tags / Chips / Badges
   -------------------------------------------------------------------------- */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background: #f3f4f6;
    color: #374151;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.tag:hover {
    background: #e5e7eb;
    color: #111827;
}

.tag--primary {
    background: #eff6ff;
    color: var(--color-primary);
}

.tag--primary:hover {
    background: #dbeafe;
}

.tag__icon {
    width: 1rem;
    height: 1rem;
}

.tag__remove {
    width: 1rem;
    height: 1rem;
    margin-left: 0.25rem;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.tag__remove:hover {
    opacity: 1;
}

/* Badge styles */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 9999px;
}

.badge-primary {
    background: #eff6ff;
    color: #1d4ed8;
}

.badge-success {
    background: #ecfdf5;
    color: #059669;
}

.badge-warning {
    background: #fffbeb;
    color: #d97706;
}

.badge-error {
    background: #fef2f2;
    color: #dc2626;
}

.badge-gray {
    background: #f3f4f6;
    color: #4b5563;
}

/* --------------------------------------------------------------------------
   Loading states
   -------------------------------------------------------------------------- */
.skeleton {
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 0.375rem;
}

.skeleton--text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton--title {
    height: 1.5rem;
    width: 70%;
    margin-bottom: 0.75rem;
}

.skeleton--avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
}

/* Spinner */
.spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid #e5e7eb;
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* --------------------------------------------------------------------------
   Empty states
   -------------------------------------------------------------------------- */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
}

.empty-state__icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    color: #d1d5db;
}

.empty-state__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.empty-state__text {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   Tooltips (CSS-only)
   -------------------------------------------------------------------------- */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-0.5rem);
    padding: 0.5rem 0.75rem;
    background: #1f2937;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 0.375rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 50;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-0.25rem);
}

/* --------------------------------------------------------------------------
   Custom scrollbar
   -------------------------------------------------------------------------- */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* --------------------------------------------------------------------------
   Line clamp utilities
   -------------------------------------------------------------------------- */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Responsive utilities
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
    .hide-mobile {
        display: none !important;
    }

    .vacancy-card {
        padding: 1rem;
    }

    .vacancy-card__title {
        font-size: 1rem;
    }
}

@media (min-width: 641px) {
    .show-mobile-only {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   Print styles
   -------------------------------------------------------------------------- */
@media print {
    .no-print,
    header,
    footer,
    .filters-sidebar,
    .pagination,
    .map-container {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .vacancy-card {
        break-inside: avoid;
        border: 1px solid #ccc;
        margin-bottom: 1rem;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}


/* ==========================================================================
   New Interactive & Visual Styles
   ========================================================================== */

/* Background mesh gradient */
.bg-mesh {
    background-color: #f8fafc;
    background-image:
        radial-gradient(at 40% 20%, rgba(42, 164, 255, 0.08) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(249, 115, 22, 0.06) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(42, 164, 255, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(249, 115, 22, 0.04) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(42, 164, 255, 0.06) 0px, transparent 50%);
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #2aa4ff 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Animated gradient border */
.animated-border {
    position: relative;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #2aa4ff, #f97316) border-box;
    border: 2px solid transparent;
}

/* Glassmorphism effect */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Pulsing dot animation */
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}
.pulse-dot {
    animation: pulse-dot 2s ease-in-out infinite;
}

/* Floating animation for decorative elements */
@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}
.float-slow {
    animation: float-slow 8s ease-in-out infinite;
}

/* Interactive button with gradient */
.btn-gradient {
    background: linear-gradient(135deg, #2aa4ff 0%, #0d6ee1 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-gradient:hover::before {
    left: 100%;
}
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(42, 164, 255, 0.4);
}

/* Card with top gradient border */
.card-gradient-top {
    position: relative;
    overflow: hidden;
}
.card-gradient-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2aa4ff, #f97316);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.card-gradient-top:hover::before {
    transform: scaleX(1);
}

/* Ripple effect on click */
.ripple {
    position: relative;
    overflow: hidden;
}
.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Smooth scroll indicator */
.scroll-indicator {
    animation: bounce 2s infinite;
}

/* Progress bar animation */
@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}
.progress-animated {
    animation: progress 2s ease-out forwards;
}

/* Stagger animation for lists */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    animation: stagger-in 0.5s ease forwards;
}
@keyframes stagger-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }

/* Subtle shadow on scroll */
.shadow-on-scroll {
    transition: box-shadow 0.3s ease;
}
.shadow-on-scroll.scrolled {
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.1);
}

/* Input focus glow */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(42, 164, 255, 0.15);
}

/* Tag hover animation */
.tag-animated {
    transition: all 0.2s ease;
}
.tag-animated:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px -2px rgba(0,0,0,0.15);
}

/* Counter animation */
@keyframes count-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.count-animated {
    animation: count-up 0.6s ease forwards;
}
