﻿.filter-buttons-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .filter-buttons button.active {
        background-color: #333;
        color: #fff;
        border-radius: 5px;
    }

.btn-filter {
    background-color: #1e1e1e; /* Arka plan rengini değiştir */
    color: #00bcd4; /* Yazı rengini ayarla */
    border: 1px solid #00bcd4; /* Kenarlık ekle */
    border-radius: 2px;
    padding: 2px;
}

    .btn-filter:hover {
        background-color: #00bcd4; /* Hover olduğunda renk değiştir */
        color: #fff;
    }

.card-item {
    border: 2px solid transparent;
    border-radius: 10px;
    transition: box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

    .card-item:hover {
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .card-item.book {
        border-color: #e74c3c; /* kırmızı */
    }

        .card-item.book:hover {
            box-shadow: 0 0 15px #e74c3c66;
        }

    .card-item.movie {
        border-color: #e67e22; /* turuncu */
    }

        .card-item.movie:hover {
            box-shadow: 0 0 15px #e67e2266;
        }

    .card-item.series {
        border-color: #1e90ff; /* mavi */
    }

        .card-item.series:hover {
            box-shadow: 0 0 15px #1e90ff66;
        }

    .card-item.shooting {
        border-color: #27ae60; /* yeşil */
    }

        .card-item.shooting:hover {
            box-shadow: 0 0 15px #27ae6066;
        }

    .card-item.other {
        border-color: #f1c40f; /* sarı */
    }

        .card-item.other:hover {
            box-shadow: 0 0 15px #f1c40f66;
        }

/* Küçük badge */
.type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 5px;
    color: white;
    background-color: gray;
    z-index: 10;
}

    .type-badge.book {
        background-color: #e74c3c;
    }

    .type-badge.movie {
        background-color: #e67e22;
    }

    .type-badge.series {
        background-color: #1e90ff;
    }

    .type-badge.shooting {
        background-color: #27ae60;
    }

    .type-badge.other {
        background-color: #f1c40f;
        color: black;
    }

.mini-featured-card {
    transition: transform 0.3s ease;
}

    .mini-featured-card:hover {
        transform: translateY(-4px);
    }
