body {
    margin: 0;
    background-color: #121212;
    color: white;
    font-family: Arial, sans-serif;
}

main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 56px;
    margin-bottom: 10px;
}

h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

p {
    max-width: 600px;
    font-size: 18px;
    line-height: 1.6;
    color: #bdbdbd;
}

button {
    margin-top: 20px;
    padding: 14px 28px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.hidden {
    display: none;
}
#ranking-list {
    margin-top: 30px;
    max-width: 600px;
}

.game-card {
    background-color: #1e1e1e;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
}
#result {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}
#result-score {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}
#result-name {
    font-size: 32px;
    margin-bottom: 10px;
}.game-card:first-child {
    border: 2px solid white;
    font-weight: bold;
    transform: scale(1.02);
}
.game-card {
    transition: transform 0.2s ease;
}
@media (max-width: 700px) {
    body {
        padding: 15px;
    }

    #result {
        padding: 20px 10px;
    }

    button {
        width: 100%;
        margin-top: 10px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 26px;
    }
}