/* Category Sections - Horizontal Rows */
.category-section {
    margin: 40px 0;
}

.category-title {
    font-size: 1.8rem;
    color: #00ff88;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ff0033;
    text-align: center;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* Center align cards in row */
}

.card {
    flex: 1 1 280px; /* Grow and shrink, min width 280px */
    max-width: 320px; /* Max width per card */
    background: rgba(20, 20, 30, 0.7);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255,0,51,0.3);
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card h3 {
    font-size: 1.2rem;
    margin: 10px;
    text-align: center;
}

.card a {
    display: block;
    text-align: center;
    background: #ff0033;
    color: white;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    margin: 10px;
    border-radius: 8px;
}

/* Mobile pe full width cards */
@media (max-width: 768px) {
    .card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}