body {
    font-family: "Cascadia Code", monospace;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: url('/assets/bg.png') center/cover fixed;
    color: #ffffffcb;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 12px;
    }
}

a:link, a:visited {
    color: rgb(255, 255, 255);
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: rgb(255, 255, 255);
    background-color: transparent;
    text-decoration: underline;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    position: relative;
    z-index: 2;
    margin: 20px;
    animation: fadeSlideIn 1s ease-out;
}

.rank {
    color: #ffffff;
    text-shadow: #ffffff 0px 0px 18px;
}