main {
    padding: 40px;
    background-image: radial-gradient(circle, #2a2a2a 0%, var(--er-black) 100%);
    min-height: 100vh;
    color: var(--er-text);
}

.boss-registry {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.boss-registry thead th a {
    text-decoration: none;
    color: var(--gold-grace);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.boss-registry thead th a:hover {
    text-shadow: 0 0 10px var(--gold-grace);
}

.region-row {
    background: rgba(40, 40, 40, 0.8);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.region-row:hover {
    transform: scale(1.01);
    background: rgba(60, 60, 60, 0.9);
    box-shadow: 0 0 20px rgba(255, 202, 40, 0.2);
}

.region-row td {
    padding: var(--standard-padding);
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    color: var(--er-text);
}

.region-row td:first-child { 
    border-left: 3px solid var(--gold-dim); 
    border-radius: 10px 0 0 10px; 
}

.region-row td:last-child { 
    border-right: 1px solid #444; 
    border-radius: 0 10px 10px 0;
    text-align: center;
    font-weight: bold;
    color: var(--gold-grace);
}

.climate {
    font-style: italic;
    color: var(--er-lore);
    font-family: 'Georgia', serif;
}

.danger-tag {
    background: rgba(139, 0, 0, 0.3);
    color: #ff6b6b;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid rgba(255, 107, 107, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

.name-cell {
    font-size: 1.4rem;
    color: var(--gold-grace);
    font-weight: bold;
}

.grace-icon {
    margin-right: 8px;
    filter: drop-shadow(0 0 5px var(--gold-grace));
}