/* ===== RESULTS SCREEN ===== */
.results {
    gap: 20px;
    padding-bottom: 48px;
}

.results__header {
    text-align: center;
    animation: slideUp 0.5s ease;
    padding: 8px 0;
}

.results__emoji {
    font-size: 60px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 24px rgba(155,115,255,0.6));
    display: block;
    animation: pulse 3s ease-in-out infinite;
}

.results__title {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.results__style {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Score bars */
.scores {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: slideUp 0.5s ease 0.1s both;
}

.scores__title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.score-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.score-row__header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.score-row__label {
    font-weight: 600;
    color: var(--text-secondary);
}

.score-row__value {
    font-weight: 700;
    font-size: 13px;
}

.score-row__bar {
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 100px;
    overflow: hidden;
}

.score-row__fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.score-row--secure   .score-row__fill  { background: linear-gradient(90deg, #4ADE80, #22C55E); box-shadow: 0 0 8px var(--green-glow); }
.score-row--secure   .score-row__value { color: #86EFAC; }
.score-row--anxious  .score-row__fill  { background: linear-gradient(90deg, #FB923C, #F97316); box-shadow: 0 0 8px var(--orange-glow); }
.score-row--anxious  .score-row__value { color: #FDBA74; }
.score-row--avoidant .score-row__fill  { background: linear-gradient(90deg, #60A5FA, #3B82F6); box-shadow: 0 0 8px var(--blue-glow); }
.score-row--avoidant .score-row__value { color: #93C5FD; }
.score-row--fearful  .score-row__fill  { background: linear-gradient(90deg, #F87171, #EF4444); box-shadow: 0 0 8px var(--red-glow); }
.score-row--fearful  .score-row__value { color: #FCA5A5; }

/* Summary */
.summary-card {
    padding: 24px 22px;
    animation: slideUp 0.5s ease 0.2s both;
}

.summary-card__title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-card__text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Lists */
.result-list {
    padding: 22px;
    animation: slideUp 0.5s ease 0.3s both;
}

.result-list__title {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-list__title--strengths { color: #86EFAC; }
.result-list__title--growth    { color: #FDBA74; }
.result-list__title--recs      { color: var(--primary-light); }

.result-list__items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-list__item {
    display: flex;
    gap: 12px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    padding: 12px 14px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-xs);
    border: 1px solid var(--glass-border);
    transition: background var(--transition), border-color var(--transition);
}

.result-list__item:hover {
    background: rgba(155, 115, 255, 0.06);
    border-color: rgba(155, 115, 255, 0.2);
}

.result-list__item::before {
    content: attr(data-icon);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.results__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: slideUp 0.5s ease 0.4s both;
}

/* Results sticker (replaces emoji) */
.results__sticker {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 12px;
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 8px 24px rgba(155, 115, 255, 0.5));
}


/* ===== CHARACTER CARD ===== */
.character-card {
    padding: 24px 22px;
    animation: slideUp 0.5s ease 0.15s both;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.character-card__header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.character-card__image {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid rgba(155, 115, 255, 0.3);
    flex-shrink: 0;
    background: rgba(155, 115, 255, 0.1);
}

.character-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.character-card__label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.character-card__name {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #C4A7FF 0%, #F478B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.character-card__source {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.character-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}