/* ===== ПРЕМИАЛЬНАЯ ТЕМНАЯ ТЕМА ===== */
/* Dark theme, minimalism, serious design */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Основные цвета */
    --bg-primary: #0a0c10;
    --bg-secondary: #111316;
    --bg-tertiary: #1a1d24;
    --surface: #1e2128;
    --surface-hover: #2a2e38;
    
    /* Текст */
    --text-primary: #ffffff;
    --text-secondary: #9aa1b5;
    --text-tertiary: #6b7280;
    --text-disabled: #40454f;
    
    /* Акценты */
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --accent-soft: rgba(59, 130, 246, 0.1);
    --success: #10b981;
    --warning: #f59e0b;
    
    /* Границы */
    --border-light: #2a2e38;
    --border-regular: #333842;
    --border-heavy: #40454f;
    
    /* Тени */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-focus: 0 0 0 3px rgba(59, 130, 246, 0.3);
    
    /* Размеры */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 32px;
    position: relative;
    z-index: 10;
}

/* ===== АНИМАЦИЯ ИКОНОК В СТИЛЕ MIDJOURNEY ===== */
.hero-animation {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.icon-group {
    position: absolute;
    display: flex;
    gap: 20px;
    white-space: nowrap;
    animation: floatHorizontal 40s linear infinite;
}

.icon-group-1 {
    top: 20%;
    left: 0;
    animation-duration: 35s;
}

.icon-group-2 {
    top: 40%;
    right: 0;
    animation: floatHorizontalReverse 45s linear infinite;
}

.icon-group-3 {
    top: 60%;
    left: 0;
    animation-duration: 40s;
}

.icon-group-4 {
    top: 80%;
    right: 0;
    animation: floatHorizontalReverse 50s linear infinite;
}

.floating-icon {
    width: 70px;
    height: 70px;
    background: rgba(20, 22, 27, 0.9);
    backdrop-filter: blur(5px);
    border: 2px solid var(--border-regular);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
    padding: 12px;
}

.floating-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.floating-icon:hover {
    transform: scale(1.15);
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.4);
    background: rgba(30, 33, 40, 0.95);
}

/* Разные задержки для анимации плавания */
.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: 0.5s; }
.floating-icon:nth-child(3) { animation-delay: 1s; }
.floating-icon:nth-child(4) { animation-delay: 1.5s; }
.floating-icon:nth-child(5) { animation-delay: 2s; }
.floating-icon:nth-child(6) { animation-delay: 2.5s; }
.floating-icon:nth-child(7) { animation-delay: 3s; }
.floating-icon:nth-child(8) { animation-delay: 3.5s; }
.floating-icon:nth-child(9) { animation-delay: 4s; }
.floating-icon:nth-child(10) { animation-delay: 4.5s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    75% {
        transform: translateY(10px) rotate(-2deg);
    }
}

@keyframes floatHorizontal {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes floatHorizontalReverse {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Градиентные маски по краям */
.hero-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 20%, transparent 80%, var(--bg-primary) 100%);
    pointer-events: none;
    z-index: 5;
}

.hero-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-primary) 100%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 6;
}

/* ===== ТИПОГРАФИЯ ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

/* ===== ШАПКА ===== */
.header {
    margin-bottom: 56px;
    position: relative;
    z-index: 20;
}

.header h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.header h1 span {
    color: var(--accent);
    font-weight: 500;
    font-size: 1.5rem;
    margin-left: 8px;
}

.header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ===== ПОИСК ===== */
.search-wrapper {
    max-width: 560px;
    margin-bottom: 56px;
    position: relative;
    z-index: 20;
}

.search-box input {
    width: 100%;
    padding: 14px 18px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-regular);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-tertiary);
}

.search-box input:hover {
    border-color: var(--border-heavy);
}

.search-box input:focus {
    border-color: var(--accent);
    box-shadow: var(--shadow-focus);
    background-color: var(--bg-tertiary);
}

/* ===== КАТЕГОРИИ ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
    position: relative;
    z-index: 20;
}

.category-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-card:hover {
    background-color: var(--bg-tertiary);
    border-color: var(--border-heavy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.category-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== СЕКЦИИ ===== */
.section {
    margin-bottom: 48px;
    position: relative;
    z-index: 20;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.section-link:hover {
    color: var(--accent);
    background-color: var(--accent-soft);
}

/* ===== СЕТКА РЕСУРСОВ ===== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.resource-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.resource-card:hover {
    background-color: var(--bg-tertiary);
    border-color: var(--border-heavy);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.resource-card:hover::before {
    opacity: 1;
}

.resource-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.resource-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.resource-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background-color: var(--surface);
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.resource-card:hover .tag {
    border-color: var(--border-heavy);
    color: var(--text-primary);
}

.resource-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 4px 0;
    transition: all 0.2s ease;
}

.resource-link:hover {
    color: var(--accent-hover);
    gap: 10px;
}

.resource-link::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.resource-link:hover::after {
    transform: translateX(4px);
}

/* ===== ПОПУЛЯРНЫЕ ЗАПРОСЫ ===== */
.popular-section {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin: 48px 0;
    position: relative;
    z-index: 20;
}

.popular-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.query-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.query-tag {
    background-color: var(--surface);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.query-tag:hover {
    background-color: var(--surface-hover);
    border-color: var(--accent);
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* ===== ФУТЕР ===== */
.footer {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    z-index: 20;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--accent);
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    .container {
        padding: 32px 24px;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .hero-animation {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header h1 span {
        font-size: 1.2rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .footer {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .hero-animation {
        height: 300px;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
        padding: 10px;
    }
    
    .floating-icon img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 16px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-card {
        padding: 20px;
    }
    
    .popular-section {
        padding: 20px;
    }
    
    .hero-animation {
        height: 250px;
        margin-bottom: 30px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        padding: 8px;
        border-radius: 14px;
    }
    
    .floating-icon img {
        width: 28px;
        height: 28px;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .search-wrapper {
        margin-bottom: 30px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 360px) {
    .hero-animation {
        height: 200px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
        padding: 6px;
        border-radius: 12px;
    }
    
    .floating-icon img {
        width: 22px;
        height: 22px;
    }
}

/* ===== УТИЛИТЫ ===== */
.text-accent {
    color: var(--accent);
}

.text-secondary {
    color: var(--text-secondary);
}

/* ===== СКРОЛЛБАР ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-heavy);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ===== АНИМАЦИИ ПРИ ЗАГРУЗКЕ ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    animation: fadeIn 0.8s ease;
}

.search-wrapper {
    animation: fadeIn 0.8s ease 0.1s both;
}

.categories-grid {
    animation: fadeIn 0.8s ease 0.2s both;
}

.section {
    animation: fadeIn 0.8s ease;
}

/* ===== ФИКСИРОВАННАЯ ПАНЕЛЬ УПРАВЛЕНИЯ ===== */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.top-navbar:hover {
    background: rgba(10, 12, 16, 0.95);
    border-bottom-color: var(--accent);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Логотип */
.navbar-logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px var(--accent));
    animation: pulse 2s ease-in-out infinite;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo-badge {
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 20px;
    margin-left: 4px;
    text-transform: uppercase;
}

/* Меню навигации */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: white;
    background: rgba(59, 130, 246, 0.15);
}

.nav-link.active {
    color: white;
    background: rgba(59, 130, 246, 0.2);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
}

/* Кнопки действий */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle, .menu-toggle {
    background: rgba(30, 33, 40, 0.8);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.theme-toggle:hover, .menu-toggle:hover {
    background: var(--surface-hover);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

/* Отступ, чтобы контент не прятался под панелью */
.navbar-spacer {
    height: 80px;
    width: 100%;
}

/* Мобильное меню */
@media (max-width: 768px) {
    .navbar-container {
        padding: 10px 20px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 12, 16, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--border-light);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
        z-index: 999;
    }
    
    .navbar-menu.show {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 1.1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .navbar-spacer {
        height: 70px;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

/* Анимация для логотипа */
@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px var(--accent));
    }
    50% {
        filter: drop-shadow(0 0 15px var(--accent));
    }
}

/* Эффект при скролле */
.top-navbar.scrolled {
    background: rgba(10, 12, 16, 0.98);
    border-bottom-color: var(--accent);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}


/* ===== БЫСТРЫЕ ФИЛЬТРЫ ===== */
.quick-filters {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 40px;
    position: relative;
    z-index: 20;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.filters-header h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-filters {
    color: var(--accent);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.clear-filters:hover {
    background: var(--accent-soft);
}

.filter-section {
    margin-bottom: 20px;
}

.filter-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    background: var(--surface);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tag:hover {
    background: var(--surface-hover);
    border-color: var(--accent);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.filter-tag.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.active-filters {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.active-filters span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.active-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.active-filter-tag {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.active-filter-tag .remove {
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

.active-filter-tag .remove:hover {
    color: var(--warning);
}

/* ===== ПОСЛЕДНИЕ ОБНОВЛЕНИЯ ===== */
.updates-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin: 40px 0;
    position: relative;
    z-index: 20;
}

.updates-section h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.update-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    position: relative;
    transition: all 0.2s ease;
}

.update-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.update-card.new {
    border-left: 4px solid var(--accent);
}

.update-badge {
    position: absolute;
    top: -8px;
    right: 16px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.update-date {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.update-content {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.update-content strong {
    color: var(--accent);
}

.all-updates-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.all-updates-link:hover {
    background: var(--accent-soft);
    transform: translateX(4px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .quick-filters {
        padding: 20px;
    }
    
    .filter-options {
        gap: 8px;
    }
    
    .filter-tag {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .updates-section {
        padding: 24px;
    }
    
    .updates-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .active-filters {
        flex-direction: column;
        align-items: flex-start;
    }
}