.bannedcards h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
    color: #f05454;
    border-bottom: 2px solid #f05454;
    padding-bottom: 10px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    background-color: #2d2d2d;
    color: #dcdcdc;
    border: 1px solid #444;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.tab.active {
    background-color: #f05454;
    color: #fff;
    transform: scale(1.05);
}

.tab:hover {
    background-color: #f05454;
    color: #fff;
}

.card {
    background: #2a2a2a;
    border: 2px solid #f05454;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.card img {
    max-width: 100%;
    border-radius: 5px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 5px;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #f05454;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff6f61;
}