.ufc-roster-page {
    width: min(100%, 980px);
    margin: 0 auto;
}

.ufc-roster-header {
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--border);
}

.ufc-roster-kicker {
    margin: 0 0 0.6rem;
    color: var(--accent-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.ufc-roster-header h1 {
    margin: 0;
    color: #fff;
    font-family: "Gobold", Impact, sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.ufc-roster-intro {
    max-width: 760px;
    margin: 1rem 0 0;
    color: var(--text-muted, #b9b9b9);
    line-height: 1.6;
}

.ufc-roster-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--text-muted, #b9b9b9);
    font-size: 0.9rem;
}

.ufc-roster-list {
    display: grid;
    gap: 0.8rem;
}

.ufc-roster-card {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: 104px;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-bright, #333);
    border-radius: 14px;
    background: var(--surface, #111);
}

.ufc-roster-rank {
    color: rgba(255, 255, 255, 0.25);
    font-family: "Gobold", Impact, sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.ufc-roster-name {
    margin: 0;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
}

.ufc-roster-name a {
    color: #fff;
    text-decoration: none;
}

.ufc-roster-name a:hover,
.ufc-roster-name a:focus-visible {
    text-decoration: underline;
}

.ufc-roster-details,
.ufc-roster-detected {
    margin: 0.35rem 0 0;
}

.ufc-roster-details {
    color: #fff;
    font-size: 0.94rem;
}

.ufc-roster-detected {
    color: var(--text-muted, #aaa);
    font-size: 0.82rem;
}

.ufc-roster-status-pill {
    display: inline-block;
    margin-top: 0.55rem;
    padding: 0.22rem 0.5rem;
    border: 1px solid var(--border-bright, #333);
    border-radius: 999px;
    color: var(--text-muted, #b9b9b9);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ufc-roster-photo {
    display: block;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: 10px;
    background: #080808;
}

.ufc-roster-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ufc-roster-empty {
    padding: 2rem;
    border: 1px dashed var(--border-bright, #333);
    border-radius: 14px;
    color: var(--text-muted, #aaa);
    text-align: center;
}

.ufc-roster-note {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted, #999);
    font-size: 0.82rem;
    line-height: 1.55;
}

@media (max-width: 640px) {
    .ufc-roster-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .ufc-roster-card {
        grid-template-columns: 42px 1fr;
    }

    .ufc-roster-photo {
        display: none;
    }
}
