body {
    background: linear-gradient(135deg, #ff6b6b, #4a00e0);
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.anime-widget-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    max-width: 1000px;
}

.widget-title {
    font-family: 'Shojumaru', cursive;
    font-size: 2.5em;
    text-align: center;
    color: #ffeb3b;
    text-shadow: 0 0 10px #ffeb3b, 0 0 20px #ff6b6b;
    margin-bottom: 20px;
}

.category-filter {
    text-align: center;
    margin-bottom: 20px;
}

.category-filter label {
    font-size: 1.2em;
    margin-right: 10px;
}

.tag-select {
    background: #1a1a1a;
    color: #fff;
    border: 2px solid #ff6b6b;
    border-radius: 5px;
    font-size: 1em;
    transition: all 0.3s;
}

.tag-select:hover {
    background: #ff6b6b;
    color: #fff;
}

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

.post-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #ffeb3b;
}

.post-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #ffeb3b;
}

.post-card img {
    width: 100%;
    object-fit: full;
    border-radius: 8px;
    margin-bottom: 10px;
}

.post-card h3 {
    font-size: 1.3em;
    margin: 0 0 10px;
    color: #ffeb3b;
}

.post-card p {
    font-size: 0.9em;
    color: #e0e0e0;
    margin: 0 0 10px;
}

.post-card .category {
    font-size: 0.8em;
    color: #ff6b6b;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .widget-title {
        font-size: 2em;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }
}