body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 2rem 0;
}

/* Stats Area */
.stats-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.big-score {
    text-align: center;
    margin-right: 1.5rem;
}
.big-score h1 {
    font-size: 2.5rem; 
    font-weight: 600;
    margin: 0;
    line-height: 1;
    color: #000;
    /* font-family: 'IBM Plex Mono', monospace; */
}
.big-score p {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.45);
    margin: 0;
    margin-top: 5px;
}

/* Review Card */
.review-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    text-align: left;
    /* transition added for smooth tilt if needed */
    transition: box-shadow 0.3s ease;
}
.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.2rem;
}
.review-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: #000;
    margin: 0;
    /* font-family: 'IBM Plex Mono', monospace; */
}
.review-date {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.45);
}
.review-subheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}
.stars {
    color: #000; 
    font-size: 0.8rem;
    letter-spacing: 1px;
}
.review-author {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.45);
}
.review-body {
    font-size: 0.8rem;
    color: rgba(0,0,0,0.6);
    line-height: 1.5;
    margin: 0;
}

.link-blue { color: #007aff; text-decoration: none; }
.link-blue:hover { text-decoration: underline; }

/* Faking the star bars */
.bar-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 3px;
}
.stars-label {
    color: rgba(0,0,0,0.45);
    font-size: 0.6rem;
    letter-spacing: 1px;
    margin-right: 5px;
    text-align: right;
    width: 45px;
}
.bar-track {
    background: rgba(0,0,0,0.08);
    height: 3px;
    width: 120px;
    border-radius: 2px;
    position: relative;
}
.bar-fill {
    background: rgba(0,0,0,0.45);
    height: 100%;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
}