.search-title {
    text-align: center;
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 15px;
    font-weight: 700;
}
.search-box {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#searchInput {
    width: 100%;
    max-width: 450px;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #D4AF37;
    background: #0A0F1F;
    color: #fff;
    font-size: 1rem;
    text-align: center;
}

#searchInput::placeholder {
    color: #D4AF37;
    opacity: 0.8;
}
.member-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .member-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .member-list {
        grid-template-columns: 1fr;
    }
}
