.players-online-container {
    background: rgba(10, 10, 10, 0.85);
    border: 2px solid #444;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.1);
    max-width: 900px;
    margin: 30px auto;
    text-align: center;
}

.section-title {
    font-family: "Cinzel Decorative", serif;
    font-size: 2rem;
    color: #f5d76e;
    margin-bottom: 20px;
}

.players-online-table {
    width: 100%;
    border-collapse: collapse;
    color: #eee;
    font-family: 'Trebuchet MS', sans-serif;
}

.players-online-table th {
    background: #1c1c1c;
    color: #f0c674;
    padding: 10px;
    border-bottom: 2px solid #555;
}

.players-online-table td {
    padding: 10px;
    border-bottom: 1px solid #333;
}

.players-online-table tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.05);
}

.players-online-table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.2);
}

.players-online-table tr:hover {
    background: rgba(255, 215, 0, 0.1);
    transition: background 0.3s;
}

.link-character a {
    display: block;
    width: 100%;
    font-size: 15px;
    height: 100%;
    text-decoration: none;
    color: #867b61;
    padding: 8px 12px;
}