*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
section{
    position: relative;
    background: #161623;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
section::before{
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(#ffc107,#e91e63);
    transform: translate(-250px,-120px);
}
section::after{
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(#2196f3,#31ff38);
    transform: translate(250px,150px);
}
.box{
    position: relative;
    min-width: 350px;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    z-index: 10;
    padding: 20px;
    backdrop-filter: blur(25px);
}
.box h3{
    color: #fff;
    margin-bottom: 20px;
}
.box .list{
    position: relative;
    display: flex;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.5s;
    overflow: hidden;
}
.box .list:hover{
    background: #fff;
    box-shadow: -15px 30px 50px rgba(0, 0, 0, 0.5);
    transform: scale(1.15) translateX(30px) translateY(-15px);
    z-index: 1000;
}
.box .list .imgbox{
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 10px ;
}
.box .list .imgbox img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.box .list .content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.box .list .content .rank{
    position: absolute;
    right: -50px;
    color: #03a9f4;
    font-size: 2.5em;
}
.box .list .content .rank small{
    font-weight: 500;
    opacity: 0.25;
}
.box .list:hover .content .rank{
    right: 20px;
}
.box .list .content h4{
    line-height: 1.5em;
    font-weight: 600;
}
.box .list .content p{
    line-height: 0.75em;
    opacity: 0.7;
}
.box .list:hover .content h4,
.box .list:hover .content p{
    color: #333;
}