body {
    background-color: #e3f2fd;
}
.toplist-card {
    border-radius: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.toplist-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.rank-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff9800;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    
}
a:link {
color: green;
text-decoration: none;
}

/* visited link */
a:visited {
color: green;
}

/* mouse over link */
a:hover {
color: red;
}

/* selected link */
a:active {
color: yellow;
}