.roster-container {
    padding: 20px;
}

.roster-header {
    margin-bottom: 30px;
    background: linear-gradient(180deg, #003366 0%, #001a33 100%);
    border: 4px outset #0066cc;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.roster-header img {
    height: 75px;
    width: auto;
}

.roster-header-text {
    flex: 1;
}

.roster-header h1 {
    color: #ffcc00;
    font-family: 'Arial Black', sans-serif;
    text-shadow: 3px 3px 0px #000;
    margin: 0 0 8px 0;
}

.roster-tagline {
    color: #00ffff;
    font-style: italic;
    margin: 0;
}

.roster-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
}

.irregular-row {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(180deg, #2a1a3a 0%, #1a0a2a 100%);
    border: 3px outset #6633aa;
    padding: 15px 18px;
    transition: all 0.2s;
}

.irregular-row:hover {
    border-color: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
}

.irregular-avatar {
    width: 96px;
    height: 96px;
    border: 3px solid #ffcc00;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
}

.irregular-avatar img {
    max-width: 100%;
    max-height: 100%;
}

.irregular-info {
    flex: 1;
    min-width: 0;
}

.irregular-name {
    font-family: 'Arial Black', sans-serif;
    color: #00ffff;
    margin-bottom: 6px;
    font-size: 18px;
}

.irregular-name a {
    color: #00ffff;
    text-decoration: none;
}

.irregular-name a:hover {
    color: #ffcc00;
}

.irregular-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.irregular-role {
    color: #ff6600;
    font-weight: bold;
    text-transform: uppercase;
}

.irregular-joined {
    color: #888;
}

.irregular-plan-preview {
    margin-top: 6px;
    padding: 8px 10px;
    background: #0000aa;
    border: 2px inset #0000cc;
    font-family: 'Courier New', monospace;
    color: #ffffff;
    max-height: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.roster-count {
    text-align: center;
    margin: 20px 0;
    color: #00ff00;
    font-family: 'Courier New', monospace;
}
