@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap');

body {
    background: #f5f1ea;
    font-family: "DM Sans", sans-serif;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    width: 270px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    overflow: hidden;
    width: 420px;
    margin: 120px auto 40px auto;

}


.card-header {
    background: #8b1c3d;
    color: white;
    padding: 12px;
}

.card-header h3 {
    margin: 0;
    font-weight: 600;
}

.card-header p {
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.9;
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 13px 16px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.rank {
    padding: 14px 16px;
    background: #f9f9f9;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
}

.rank span {
    color: #8b1c3d;
    font-weight: 600;
}

.highlight {
    color: #8b1c3d;
    font-weight: 700;
}

.green {
    color: #5a9e3a;
    font-weight: 600;
}

.bold {
    color: #222;
    font-weight: 600;
}

.muted {
    color: #aaa;
    font-style: italic;
}