html, body {margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif}

.card {
    color: #fff;
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border: 2px solid #ff7700;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    font-size: 1em;
    width: fit-content;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255, 119, 0, 0.3);
}

.player-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ff7700;
    border: 2px solid #ff7700;
    box-shadow: 0 0 20px rgba(255, 119, 0, 0.3);
    border-radius: 10px;
    padding: 2px;
    font-size: 1em;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #fff;
    border-radius: 50%;
    animation: pulse 1.2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

.player-count {
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
    margin: 10px 0;
}