/* Messages, friends, notifications */
.message-thread-list{display:grid;gap:.8rem}.thread-message{padding:.85rem;border:1px solid rgba(55,24,7,.25);border-radius:10px;background:rgba(255,238,190,.45);max-width:82%}.thread-message.mine{margin-left:auto;background:rgba(255,230,160,.62)}.thread-message header{display:flex;justify-content:space-between;gap:1rem}.message-card.unread{box-shadow:0 0 0 3px rgba(126,62,19,.24)}.message-meta{display:flex;flex-wrap:wrap;gap:.5rem;color:#4a240b;font-weight:900}.friend-search-results{display:grid;gap:.6rem}.friend-result{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:.7rem;align-items:center;padding:.75rem;border:1px solid rgba(55,24,7,.25);border-radius:8px;background:rgba(255,238,190,.32)}.player-link{text-decoration:underline;font-weight:900}.notification-summary{display:grid;gap:.4rem}.notification-summary a{display:flex;justify-content:space-between;align-items:center;padding:.65rem .75rem;border:1px solid rgba(55,24,7,.25);border-radius:8px;background:rgba(255,238,190,.34);text-decoration:none}@media(max-width:760px){.thread-message{max-width:100%}.friend-result{grid-template-columns:1fr}}

/* 20260627-2 profile themes */
.profile-wrap{display:grid;gap:1rem}.profile-hero-row{display:flex;gap:1rem;align-items:flex-start}.profile-avatar-lg{width:120px;height:120px;object-fit:cover;border-radius:18px;border:4px solid var(--profile-accent,#7e3e13);background:rgba(255,238,190,.7);box-shadow:0 10px 24px rgba(0,0,0,.32)}.profile-portrait{display:block;width:100%;max-height:360px;object-fit:cover;border:6px solid var(--profile-accent,#7e3e13);border-radius:12px;margin-top:1rem}.profile-links{display:flex;flex-wrap:wrap;gap:.6rem}.profile-theme-tavern{--profile-accent:#7e3e13}.profile-theme-arcane{--profile-accent:#5e37a6}.profile-theme-arcane .parchment-panel{background:linear-gradient(135deg,#eadfff,#bca3e8)!important;border-image:linear-gradient(135deg,#28124d,#6e4bc2,#d9c7ff) 1}.profile-theme-forest{--profile-accent:#2f6b36}.profile-theme-forest .parchment-panel{background:linear-gradient(135deg,#e4f3d4,#8eb46e)!important;border-image:linear-gradient(135deg,#16371b,#4d8a43,#d8f0b8) 1}.profile-theme-shadow{--profile-accent:#222}.profile-theme-shadow .parchment-panel{background:linear-gradient(135deg,#d5c7bd,#75675f)!important;border-image:linear-gradient(135deg,#0b0908,#4b3b34,#cdb7a5) 1}@media(max-width:760px){.profile-hero-row{display:grid}.profile-avatar-lg{width:96px;height:96px}}


/* 20260630-41 stacked direct messages */
.message-stack {
    display: block;
    margin: 0 0 .85rem;
    border: 1px solid rgba(55,24,7,.25);
    border-radius: 10px;
    background: rgba(255,238,190,.22);
    overflow: hidden;
}
.message-stack.unread {
    box-shadow: 0 0 0 3px rgba(126,62,19,.2);
}
.message-stack-summary {
    display: block;
    cursor: pointer;
    list-style: none;
}
.message-stack-summary::-webkit-details-marker {
    display: none;
}
.message-stack-latest {
    margin: 0;
    border: 0;
    border-radius: 0;
}
.message-stack-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.message-stack-title-row h3 {
    margin: 0;
}
.message-stack-arrow {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    min-width: 2rem;
    min-height: 2rem;
    border: 1px solid rgba(55,24,7,.35);
    border-radius: 999px;
    background: rgba(255,238,190,.55);
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    transition: transform .16s ease;
}
.message-stack[open] .message-stack-arrow {
    transform: rotate(180deg);
}
.message-stack-actions {
    margin-top: .75rem;
}
.message-stack-history {
    display: grid;
    gap: .65rem;
    padding: .85rem 1rem 1rem;
    border-top: 1px solid rgba(55,24,7,.22);
    background: rgba(70,30,8,.06);
}
.message-stack-history h4 {
    margin: 0;
}
.message-history-item {
    padding: .75rem .85rem;
    border: 1px solid rgba(55,24,7,.22);
    border-radius: 8px;
    background: rgba(255,238,190,.38);
}
.message-history-item.sent-by-me {
    background: rgba(255,230,160,.5);
}
.message-history-item p {
    margin: .25rem 0 0;
}
.message-history-item .guild-meta {
    margin-top: 0;
}
@media (max-width:760px) {
    .message-stack-title-row {
        gap: .55rem;
    }
    .message-stack-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}
