body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.blog-menu-wrapper {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

.blog-menu-item {
    position: relative;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    background: white;
    color: #6c757d;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.blog-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.blog-menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    color: white;
}

.blog-menu-item:hover::before {
    opacity: 1;
}

.blog-menu-item:hover .bi {
    transform: scale(1.1) rotate(5deg);
}

.blog-menu-item.active {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-menu-item .bi {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.blog-menu-item .badge {
    display: none;
}

/* Tüm kategoriler için aynı renk */
.blog-menu-item { --gradient-start: var(--ztc-bg-bg-blue-dark); --gradient-end: var(--ztc-bg-bg-blue-dark) }

/* Blog kartları için geliştirilmiş stil */
.blog-card {
    transition: all 0.3s ease;
    border: none;
    background: white;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.blog-card img {
    transition: transform 0.3s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card .card-body {
    position: relative;
}

.blog-card .btn {
    transition: all 0.3s ease;
}

.blog-card .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}