.angie-anime-showcase-105 {
    width: 100%;
}
.angie-anime-showcase-105 .angie-anime-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.angie-anime-showcase-105 .angie-anime-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #4927A1;
}
.angie-anime-showcase-105 .angie-anime-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.15);
    border-color: #8930A8;
}
.angie-anime-showcase-105 .angie-anime-link {
    text-decoration: none;
    color: #0A0C22;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.angie-anime-showcase-105 .angie-anime-thumb {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #f0f0f0;
}
.angie-anime-showcase-105 .angie-anime-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.angie-anime-showcase-105 .angie-anime-item:hover .angie-anime-thumb img {
    transform: scale(1.05);
}
.angie-anime-showcase-105 .angie-anime-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8930A8;
    background-color: #e0e0e0;
    font-weight: bold;
}
.angie-anime-showcase-105 .angie-anime-title {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #4927A1;
    font-family: 'Montserrat', sans-serif;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.angie-anime-showcase-105 .angie-anime-item:hover .angie-anime-title {
    color: #FFC95E;
    background-color: #4927A1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .angie-anime-showcase-105 .angie-anime-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .angie-anime-showcase-105 .angie-anime-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 480px) {
    .angie-anime-showcase-105 .angie-anime-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 320px) {
    .angie-anime-showcase-105 .angie-anime-grid {
        grid-template-columns: 1fr;
    }
}