/* ==========================================================================
   SMART SHOUTOUT HUD - Official Dashboard Purple Palette & Broadcast Large Scale
   Theme: Veritas Official Twitch Purple (#18181b, #1f1f23, #9147ff, #bf94ff)
   ========================================================================== */

.shoutout-overlay {
    position: fixed;
    top: 48px;
    right: 48px;
    z-index: 99999;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-24px) scale(0.96);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    font-family: 'Titillium Web', 'Outfit', sans-serif;
}

.shoutout-overlay.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.shoutout-overlay.hiding {
    opacity: 0;
    transform: translateY(-20px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.84, 0), opacity 0.35s ease;
}

.shoutout-card {
    position: relative;
    width: 640px;
    background: linear-gradient(135deg, rgba(24, 24, 27, 0.98) 0%, rgba(31, 31, 35, 0.97) 100%);
    border: 1.5px solid rgba(145, 71, 255, 0.4);
    border-left: 6px solid #9147ff;
    border-radius: 12px;
    padding: 22px 28px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.85), 0 0 35px rgba(145, 71, 255, 0.2);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

/* Status Bar Technical Header */
.shoutout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(145, 71, 255, 0.22);
}

.shoutout-badge-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shoutout-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #bf94ff;
    background: rgba(145, 71, 255, 0.18);
    border: 1px solid rgba(145, 71, 255, 0.45);
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.shoutout-subtag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #adadb8;
    text-transform: uppercase;
}

.shoutout-live-status {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 800;
    color: #ef4444;
}

.shoutout-led-pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 12px #ef4444;
    animation: purpleShoutoutPulse 1.2s infinite alternate ease-in-out;
}

@keyframes purpleShoutoutPulse {
    from { opacity: 0.4; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1.25); }
}

/* Body: Avatar + Details */
.shoutout-body {
    display: flex;
    align-items: center;
    gap: 22px;
}

.shoutout-avatar-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
    flex-shrink: 0;
}

.shoutout-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    background: #18181b;
    border: 2.5px solid rgba(145, 71, 255, 0.45);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.shoutout-info {
    flex: 1;
    min-width: 0;
}

.shoutout-streamer-name {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #efeff1;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    font-family: 'Titillium Web', 'Outfit', sans-serif;
}

.shoutout-game-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    font-size: 14.5px;
    color: #adadb8;
}

.shoutout-game-badge {
    background: rgba(145, 71, 255, 0.2);
    border: 1px solid rgba(145, 71, 255, 0.5);
    color: #bf94ff;
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 13.5px;
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 360px;
}

.shoutout-title {
    margin-top: 6px;
    font-size: 14px;
    color: #adadb8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

/* Footer link */
.shoutout-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13.5px;
}

.shoutout-link {
    color: #bf94ff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shoutout-link svg {
    color: #9147ff;
}

.shoutout-action-hint {
    color: #adadb8;
    font-size: 12px;
    font-weight: 600;
}
