/* ===== CREATIVITY_LIST.CSS — ПРЕМИУМ ГАЛЕРЕЯ С АНИМАЦИЯМИ ===== */

:root {
    /* Основные цвета */
    --primary-orange: #ff5e00;
    --primary-orange-light: #ff7733;
    --primary-orange-dark: #cc4a00;
    --primary-glow: rgba(255, 94, 0, 0.4);

    /* Фоновые цвета */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: rgba(20, 20, 20, 0.95);
    --bg-card-hover: rgba(25, 25, 25, 0.98);

    /* Текст */
    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-dim: rgba(255, 255, 255, 0.3);

    /* Градиенты */
    --gradient-hero: linear-gradient(135deg, rgba(255, 94, 0, 0.15) 0%, rgba(255, 94, 0, 0) 50%);
    --gradient-card: linear-gradient(135deg, rgba(255, 94, 0, 0.05) 0%, transparent 100%);
    --gradient-border: linear-gradient(135deg, rgba(255, 94, 0, 0.3), rgba(255, 94, 0, 0.05));

    /* Тени */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(255, 94, 0, 0.15);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 94, 0, 0.2);

    /* Анимации */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Размеры */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

/* === Базовые анимации === */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-15px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 94, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 94, 0, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* === Основной контейнер === */
.creativity-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

/* === HERO СЕКЦИЯ === */
.creativity-hero {
    position: relative;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 94, 0, 0.15);
    border-radius: var(--radius-2xl);
    padding: 3.5rem;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.creativity-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: floatSlow 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.4), transparent);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 119, 51, 0.3), transparent);
    bottom: -80px;
    left: -80px;
    animation-delay: -5s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 200, 100, 0.25), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

.creativity-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.creativity-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 94, 0, 0.12);
    backdrop-filter: blur(10px);
    color: var(--primary-orange);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 94, 0, 0.25);
    animation: fadeInLeft 0.6s ease-out;
}

.creativity-hero__kicker i:first-child {
    animation: pulse 2s ease-in-out infinite;
}

.creativity-hero__title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    position: relative;
    animation: fadeInLeft 0.6s ease-out 0.1s both;
}

.title-decoration {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), transparent);
    border-radius: 2px;
    animation: expandWidth 0.8s ease-out 0.3s both;
}

.creativity-hero__sub {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    animation: fadeInLeft 0.6s ease-out 0.2s both;
}

.btn-creativity-add {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--text-white) !important;
    text-decoration: none;
    font-weight: 600;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    animation: fadeInLeft 0.6s ease-out 0.3s both;
}

.btn-creativity-add:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 94, 0, 0.4);
}

.btn-creativity-add:active {
    transform: translateY(0);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-creativity-add:hover .btn-glow {
    left: 100%;
}

/* Статистика в hero */
.hero-stats {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 94, 0, 0.2);
    z-index: 2;
    animation: fadeInRight 0.6s ease-out 0.2s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === Фильтры === */
.creativity-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.filter-group {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.25rem;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-gray);
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.filter-btn i {
    font-size: 0.9rem;
}

.filter-btn:hover {
    color: var(--text-white);
    background: rgba(255, 94, 0, 0.1);
}

.filter-btn.active {
    background: var(--primary-orange);
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(255, 94, 0, 0.3);
}

.view-toggle {
    display: flex;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.view-btn {
    background: transparent;
    border: none;
    color: var(--text-gray);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
}

.view-btn i {
    font-size: 1rem;
}

.view-btn:hover {
    color: var(--text-white);
}

.view-btn.active {
    background: rgba(255, 94, 0, 0.2);
    color: var(--primary-orange);
}

/* Результаты */
.results-count {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 0.5s ease-out 0.15s both;
}

.results-count i {
    color: var(--primary-orange);
}

/* === Сетка === */
.creativity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Списочный вид */
.creativity-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.creativity-grid.list-view .creativity-card {
    display: flex;
    flex-direction: row;
    max-height: 220px;
}

.creativity-grid.list-view .creativity-card__visual {
    width: 280px;
    height: 220px;
    flex-shrink: 0;
}

.creativity-grid.list-view .creativity-card__info {
    flex: 1;
}

.creativity-grid.list-view .creativity-card__summary {
    -webkit-line-clamp: 2;
}

/* === Карточка === */
.creativity-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-base);
    opacity: 0;
    animation: slideInUp 0.5s ease-out forwards;
    animation-delay: calc(var(--delay, 0) * 0.05s);
}

.creativity-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 94, 0, 0.3);
    box-shadow: var(--shadow-hover);
}

/* Загрузчик карточки */
.card-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.loader-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 94, 0, 0.2);
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

/* Визуальная часть */
.creativity-card__visual {
    position: relative;
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #141414, #0a0a0a);
    overflow: hidden;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.creativity-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.creativity-card:hover .creativity-card__img {
    transform: scale(1.08);
}

/* Placeholder */
.creativity-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.placeholder-icon {
    font-size: 3rem;
    color: rgba(255, 94, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

/* Бейджи */
.creativity-card__badge-draft,
.creativity-card__badge-published {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    z-index: 2;
}

.creativity-card__badge-draft {
    background: rgba(255, 200, 0, 0.15);
    border: 1px solid #ffcc00;
    color: #ffcc00;
}

.creativity-card__badge-published {
    background: rgba(0, 200, 100, 0.15);
    border: 1px solid #00c864;
    color: #00c864;
}

/* Оверлей */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 3;
}

.creativity-card:hover .card-overlay {
    opacity: 1;
}

.overlay-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-white);
    text-decoration: none;
    transform: translateY(20px);
    transition: var(--transition-base);
    background: rgba(255, 94, 0, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 94, 0, 0.3);
}

.creativity-card:hover .overlay-link {
    transform: translateY(0);
}

.overlay-link i {
    font-size: 1.5rem;
}

.overlay-link:hover {
    background: var(--primary-orange);
    transform: scale(1.05);
}

/* Информация */
.creativity-card__info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Мета */
.creativity-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.creativity-card__author {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 94, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar i {
    font-size: 1rem;
}

.creativity-card__author:hover {
    color: var(--primary-orange);
}

.creativity-card__date {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Заголовок */
.creativity-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
}

.creativity-card__title a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-fast);
    background: linear-gradient(135deg, #fff, #fff);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: 0% 100%;
}

.creativity-card__title a:hover {
    color: var(--primary-orange);
    background-size: 100% 1px;
    background-image: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
}

/* Описание */
.creativity-card__summary {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Теги */
.creativity-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.tag:hover {
    background: rgba(255, 94, 0, 0.15);
    color: var(--primary-orange);
}

/* Футер */
.creativity-card__footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.creativity-card__stats {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.creativity-card__stats .stat {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.creativity-card__stats i {
    font-size: 0.7rem;
}

.creativity-card__readmore {
    font-size: 0.8rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    transition: var(--transition-fast);
}

.creativity-card__readmore:hover {
    gap: 0.5rem;
    color: var(--primary-orange-light);
}

/* === Пагинация === */
.creativity-pagination {
    margin-top: 2rem;
    text-align: center;
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.pagination-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.75rem;
    background: transparent;
    border: none;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    cursor: pointer;
}

.page-btn:hover {
    background: rgba(255, 94, 0, 0.15);
    color: var(--primary-orange);
}

.page-btn.active {
    background: var(--primary-orange);
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(255, 94, 0, 0.3);
}

.page-numbers {
    display: flex;
    gap: 0.25rem;
}

/* === Пустое состояние === */
.creativity-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    max-width: 500px;
    margin: 3rem auto;
    animation: scaleIn 0.5s ease-out;
}

.empty-animation {
    margin-bottom: 1.5rem;
}

.empty-icon-wrapper {
    position: relative;
    display: inline-block;
    font-size: 4rem;
    color: rgba(255, 94, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.empty-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
}

.empty-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.empty-particles span:nth-child(1) {
    top: -10px;
    left: 50%;
    animation-delay: 0s;
}
.empty-particles span:nth-child(2) {
    bottom: -10px;
    left: 20%;
    animation-delay: 0.5s;
}
.empty-particles span:nth-child(3) {
    bottom: -10px;
    right: 20%;
    animation-delay: 1s;
}

.creativity-empty h3 {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.creativity-empty p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* === Кнопка наверх === */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 100;
    box-shadow: var(--shadow-glow);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    background: var(--primary-orange-light);
    box-shadow: 0 8px 20px rgba(255, 94, 0, 0.4);
}

.scroll-top-btn:active {
    transform: translateY(0);
}

/* === Адаптивность === */
@media (max-width: 1024px) {
    .creativity-container {
        padding: 1.5rem;
    }

    .creativity-hero {
        padding: 2rem;
    }

    .creativity-hero__title {
        font-size: 2.5rem;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1.5rem;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .creativity-container {
        padding: 1rem;
    }

    .creativity-hero {
        padding: 1.5rem;
        text-align: center;
    }

    .creativity-hero__content {
        max-width: 100%;
    }

    .creativity-hero__title {
        font-size: 1.8rem;
    }

    .creativity-hero__sub {
        font-size: 0.9rem;
    }

    .creativity-hero__kicker {
        margin: 0 auto 1rem auto;
    }

    .title-decoration {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .creativity-filters {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .creativity-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .creativity-grid.list-view .creativity-card {
        flex-direction: column;
        max-height: none;
    }

    .creativity-grid.list-view .creativity-card__visual {
        width: 100%;
    }

    .pagination-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .scroll-top-btn {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .creativity-card__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .creativity-card__stats {
        flex-wrap: wrap;
    }
}

