.attribution {
    font-size: 11px;
    text-align: center;
}
.attribution a {
    color: hsl(228, 45%, 44%);
}

/* General reset  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hanken Grotesk', sans-serif;
    background: hsl(221, 100%, 96%);
    color: hsl(224, 30%, 27%);
    font-size: 18px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Main Container */
.results-summary {
    display: flex;
    max-width: 736px;
    background: white;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(61, 108, 236, 0.15);
    overflow: hidden;
}

/* Results Section */
.results {
    flex: 1;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(
        180deg,
        hsl(252, 100%, 67%),
        hsl(241, 81%, 54%)
    );
    color: white;
    border-radius: 20px;
}
.results h2 {
    margin-bottom: 1rem;
}
.score-circle {
    background: linear-gradient(180deg, hsla(256, 72%, 46%, 1), hsla(241, 72%, 46%, 0));
    color: hsl(241, 100%, 89%);
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.score {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.of_100 {
    font-size: 10px;
    font-weight: lighter;
    color: rgb(101, 101, 239);
}
.feedback {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 1rem;
}
.description {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Summary Section */
.summary {
    flex: 1;
    padding: 2rem;
}
.summary h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.categories {
    list-style: none;
    margin-bottom: 1.5rem;
}
.category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    font-weight: 500;
}

.category-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-info img {
    width: 20px;
    height: 20px;
}

.category .score {
    color: hsl(224, 30%, 27%);
    font-size: 18px;
}

.category .score strong {
    color: hsl(224, 30%, 27%);
    font-weight: 700;
}
.category.reaction {
    background: hsl(0, 100%, 95%);
    color: hsl(0, 100%, 67%);
}
.category.memory {
    background: hsl(39, 100%, 95%);
    color: hsl(39, 100%, 56%);
}
.category.verbal {
    background: hsl(166, 100%, 95%);
    color: hsl(166, 100%, 44%);
}
.category.visual {
    background: hsl(234, 100%, 95%);
    color: hsl(234, 85%, 45%);
}
.continue-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: hsl(224, 30%, 20%);
    color: white;
    text-align: center;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
}
.continue-btn:hover {
    background: hsl(224, 30%, 30%);
} /* Responsive Design */
@media only screen and (max-width: 375px) {
    .results-summary {
        flex-direction: column;
        max-width: 100%;
    }
    .results {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}
