.roster-grid-131a70fd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.roster-card-131a70fd {
    background: #000000;
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
}
.roster-card-131a70fd:hover {
    transform: scale(1.05);
    border-color: #cc0000;
    box-shadow: 0 0 15px rgba(204,0,0,0.5);
    z-index: 2;
}
.roster-image-131a70fd {
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}
.roster-card-131a70fd:hover .roster-image-131a70fd {
    transform: scale(1.1);
}
.roster-image-131a70fd::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.roster-image-131a70fd img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    background: #111;
    filter: contrast(1.1) saturate(1.2);
}
.roster-category-icon-131a70fd {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    z-index: 4;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8));
}
.roster-category-icon-131a70fd img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.roster-info-131a70fd {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: left;
    z-index: 3;
}
.roster-nickname-131a70fd {
    color: #cc0000;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 2px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}
.roster-name-131a70fd {
    color: #ffffff;
    font-family: Impact, sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}