body {
    padding-top: 0px;
    margin: 0px;
    background: linear-gradient(135deg, #0f0620 0%, #1a0b3d 25%, #2d1b69 50%, #1a0b3d 75%, #0f0620 100%);
}

:root {
    --input-primary-color: rgb(219, 165, 224);
}


/******* ここからメインエリアのスタイル ********/
main {
    text-align: center;
}


.top {
    color: white;
    height: 300px;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(75, 0, 130, 0.6));

    a {
        color: white !important;
    }

    .parallax {
        height: 300px;
        background-image: url("/images/headers/battle.jpg");
    }

    .main-title {
        margin: 0 auto;
        font-weight: 900;
        font-size: 2.5em;
        text-shadow: 0 0 30px #ff6b6b, 0 0 60px #ff6b6b, 0 0 90px #ff6b6b;
    }

}

.game-container {
    padding: 20px 20px;
}

.ranking {
    margin: 40px 0px 0px 0px;
    border-radius: 20px;
    border: 1px solid #ffffff55;
    background-color: rgba(227, 227, 227, 0.094);
    backdrop-filter: blur(10px);
}

.ranking-header {
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, #8a2be2, #ff6b6b);
    padding: 15px 20px;

    h1 {
        color: white;
        padding: 0;
        margin: 0;
        font-size: x-large;
        text-align: center;
    }
}

.ranking-item {
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rank-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8a2be2, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 1.3em;
    font-family: "Outfit", sans-serif;
    margin-right: 20px;

    &.first {
        background: linear-gradient(135deg, #c36014, #ffb86b);
    }

    &.second {
        background: linear-gradient(135deg, #545758, #c8c9cf);
    }

    &.third {
        background: linear-gradient(135deg, #9e3d09, #d4822b);
    }
}

.player-name {
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 600;
    color: white;
    font-size: 1.3em;
    flex-grow: 1;
}

.player-score {
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 600;
    color: rgb(175, 119, 193);
    font-size: 1.3em;
}

.footer {
    background-color: #242736;
    width: 100%;
    padding: 20px 0px;

    .copyright {
        padding: 0px;
        text-align: center;
        font-size: small;
        color: #e3e3e3;

        a {
            color: #e3e3e3;
        }
    }
}


@media (max-width: 820px) {
    .item-section h2 {
        margin: 0px 30px;
        color: #333;
    }

    .apps-list {
        margin: 10px 30px;
        width: calc(100% - 60px);
    }
}

@media (max-width: 450px) {
    .apps-list {
        .app {
            div {
                width: 70px;
                height: 95px;

                img {
                    width: 70px;
                    height: 70px;
                }
            }
        }
    }
}