body {
    background: #f4e8cf;
    font-family: Georgia, serif;
    margin: 0;
    padding: 20px;
}

.card {
    max-width: 400px;
    margin: 40px auto;
    background: #fffdf7;
    border: 8px solid #0b1f3a;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

h1 {
    color: #b22222;
    margin-bottom: 20px;
}

#player-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border: 5px solid #0b1f3a;
    border-radius: 10px;
}

h2 {
    color: #0b1f3a;
    font-size: 32px;
}

h3 {
    color: #b22222;
}

ul {
    text-align: left;
}
.score-box {
    width: 100%;
    height: 20px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px 0;
}

#score-bar {
    height: 100%;
    width: 0;
    background: #b22222;
    border-radius: 10px;
}
.score-note {
    font-size: 14px;
    color: #555;
    font-style: italic;
    line-height: 1.5;
    margin-top: 15px;
    text-align: left;
}
.cult-info {
    background: #f8f5e9;
    border-left: 6px solid #b22222;
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
}

.cult-info strong {
    display: block;
    color: #0b1f3a;
    margin-bottom: 8px;
    font-size: 16px;
}

.cult-info p {
    margin: 0;
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}
.cult-info {
    margin-top: 20px;
}

#toggle-info {
    width: 100%;
    background: #0b1f3a;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

#toggle-info:hover {
    background: #15335e;
}

#cult-text {
    background: #f8f5e9;
    border-left: 6px solid #b22222;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
    text-align: left;
    line-height: 1.6;
}

.hidden {
    display: none;
}
.history-card {

    display: flex;

    align-items: center;

    gap: 15px;

    margin: 15px 0;

}

.history-card img {

    width: 80px;

    height: 80px;

    object-fit: cover;

    border-radius: 8px;

    border: 3px solid #0b1f3a;

}