body {
    background: transparent;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

.scoreboard-card {
    position: relative;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #4a148c, #311b92);
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scoreboard-card .card-header {
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
}

.scoreboard-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 10px;
}

.scoreboard-header .trophy-icon {
    font-size: 3rem;
    margin-right: 10px;
}

.scoreboard-header .scoreboard-header-text {
    text-align: center;
}

.scoreboard-header .scoreboard-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.scoreboard-header .scoreboard-subtitle {
    font-size: 1rem;
    font-style: italic;
    color: #a086e0;
    text-align: center;
}

.scoreboard-card .card-body {
    padding: 10px;
}

.scoreboard-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scoreboard-list li {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 10px 0;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scoreboard-list li:hover {
    background: rgba(255, 255, 255, 0.15);
}

.score-info,
.score-points {
    display: flex;
    align-items: center;
}

.score-icon {
    margin-right: 10px;
    font-size: 1.5rem;
}

.gold { color: #FFD700; }
.silver { color: #C0C0C0; }
.bronze { color: #CD7F32; }

.default-icon {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 5px;
}

.live-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: red;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.d-none {
    display: none;
}
