﻿/* TalentHub/css/performance.css — MD Colab Performance & Polish v4
   GPU-accelerated · Micro-interactions · Smooth animations · Premium feel
   ─────────────────────────────────────────────────────────────────────── */

/* ══════════════════════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES (extend design tokens)
══════════════════════════════════════════════════════════════════════════ */
:root {
    --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);
    --ease-in-expo:  cubic-bezier(0.95, 0.05, 0.795, 0.035);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast:   120ms var(--ease-smooth);
    --transition-base:   220ms var(--ease-smooth);
    --transition-slow:   380ms var(--ease-smooth);
    --shadow-card:   0 1px 3px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.2);
    --shadow-hover:  0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,111,0,0.25);
    --shadow-glow:   0 0 20px rgba(255,111,0,0.3);
}

/* ══════════════════════════════════════════════════════════════════════════
   2. PERFORMANCE PRIMITIVES
══════════════════════════════════════════════════════════════════════════ */

/* Promote all animated elements to GPU layer */
.talent-card,
.conv-item,
.message-bubble,
.notif-item,
.gi-modal,
.upgrade-modal,
.ob-modal {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Contain layout/paint for major regions */
.talent-grid,
.messages-area,
.conversation-list,
.notif-list {
    contain: layout style;
}

/* Smooth scroll everywhere */
html,
.messages-area,
.conversation-list,
.gi-modal,
.notif-page-list {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* ══════════════════════════════════════════════════════════════════════════
   3. ENHANCED SKELETON LOADERS
══════════════════════════════════════════════════════════════════════════ */
@keyframes shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

.skeleton {
    background: linear-gradient(
        90deg,
        var(--bg-card, #111118) 25%,
        rgba(255,255,255,0.05) 50%,
        var(--bg-card, #111118) 75%
    );
    background-size: 800px 100%;
    animation: shimmer 1.6s ease-in-out infinite;
    border-radius: 6px;
}

.skeleton-card {
    background: var(--bg-card, #111118);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.skeleton-banner {
    height: 90px;
    width: 100%;
    border-radius: 0;
}

.skeleton-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: -28px 0 12px 18px;
    border: 3px solid var(--bg-card, #111118);
    flex-shrink: 0;
}

.skeleton-body {
    padding: 8px 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-footer {
    padding: 12px 18px;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.skeleton-line { border-radius: 4px; height: 12px; }
.w30 { width: 30%; }
.w40 { width: 40%; }
.w50 { width: 50%; }
.w60 { width: 60%; }
.w70 { width: 70%; }
.w80 { width: 80%; }

/* Skeleton for conv list */
.conv-skeleton {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.conv-skeleton .sk-avatar { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; }
.conv-skeleton .sk-lines  { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.conv-skeleton .sk-line   { height: 10px; }

/* ══════════════════════════════════════════════════════════════════════════
   4. TALENT CARD — PREMIUM MICRO-INTERACTIONS
══════════════════════════════════════════════════════════════════════════ */
.talent-card {
    transition: transform var(--transition-base), box-shadow var(--transition-base),
                border-color var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.talent-card:hover {
    transform: translateY(-5px) scale(1.005);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255,111,0,0.4);
}

.talent-card:active { transform: translateY(-2px) scale(1.002); transition-duration: 80ms; }

/* Ripple effect */
.talent-card { overflow: hidden; }
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: rippleAnim 500ms var(--ease-out-expo);
    background: rgba(255,111,0,0.15);
    pointer-events: none;
    z-index: 1;
}
@keyframes rippleAnim {
    to { transform: scale(2.5); opacity: 0; }
}

/* Lazy image fade-in */
.lazy-img {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.lazy-img.img-loaded,
.lazy-img[src*="cloudinary"],
.lazy-img[src*="ui-avatars"] {
    opacity: 1;
}

/* Online dot pulse */
.card-online-dot {
    animation: onlinePulse 2.5s ease-in-out infinite;
}
@keyframes onlinePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* Card enter animation */
.talent-card {
    animation: cardIn 0.35s var(--ease-spring) backwards;
}
@keyframes cardIn {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Stagger children */
.talent-grid .talent-card:nth-child(1)  { animation-delay: 0ms; }
.talent-grid .talent-card:nth-child(2)  { animation-delay: 40ms; }
.talent-grid .talent-card:nth-child(3)  { animation-delay: 80ms; }
.talent-grid .talent-card:nth-child(4)  { animation-delay: 120ms; }
.talent-grid .talent-card:nth-child(5)  { animation-delay: 160ms; }
.talent-grid .talent-card:nth-child(6)  { animation-delay: 200ms; }
.talent-grid .talent-card:nth-child(7)  { animation-delay: 240ms; }
.talent-grid .talent-card:nth-child(8)  { animation-delay: 280ms; }
.talent-grid .talent-card:nth-child(n+9){ animation-delay: 320ms; }

/* ══════════════════════════════════════════════════════════════════════════
   5. MESSAGES — REPLY BAR, REACTIONS, SEARCH, HIGHLIGHT
══════════════════════════════════════════════════════════════════════════ */

/* Reply bar */
.reply-bar {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(255,111,0,0.06);
    border-left: 3px solid var(--primary, #FF6F00);
    border-radius: 8px;
    margin-bottom: 8px;
    animation: slideDown 0.2s var(--ease-smooth);
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reply-bar-line {
    width: 3px;
    height: 100%;
    background: var(--primary, #FF6F00);
    border-radius: 2px;
    flex-shrink: 0;
}
.reply-bar-content { flex: 1; min-width: 0; }
.reply-bar-sender {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary, #FF6F00);
    margin-bottom: 2px;
}
.reply-bar-text {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.reply-bar-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px;
    flex-shrink: 0;
    transition: color var(--transition-fast);
}
.reply-bar-close:hover { color: var(--primary, #FF6F00); }

/* Reply preview inside bubble */
.msg-reply-preview {
    background: rgba(0,0,0,0.25);
    border-left: 3px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    padding: 5px 8px;
    margin-bottom: 6px;
    cursor: pointer;
    transition: background var(--transition-fast);
}
.msg-reply-preview:hover { background: rgba(255,255,255,0.1); }
.rp-sender { display: block; font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.8); margin-bottom: 2px; }
.rp-text   { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Message actions (appear on hover) */
.msg-bubble-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
}

.msg-actions {
    display: flex;
    gap: 4px;
    position: absolute;
    top: -10px;
    right: 0;
    background: var(--bg-card, #111118);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3px 6px;
    opacity: 0;
    transform: translateY(4px) scale(0.92);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    white-space: nowrap;
}

.msg-row-sent .msg-actions  { right: auto; left: 0; }

.msg-bubble-wrap:hover .msg-actions,
.msg-bubble-wrap:focus-within .msg-actions {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.msg-action-btn {
    background: none;
    border: none;
    color: #7a7a96;
    font-size: 0.78rem;
    cursor: pointer;
    padding: 3px 5px;
    border-radius: 6px;
    transition: color var(--transition-fast), background var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}
.msg-action-btn:hover { color: var(--primary, #FF6F00); background: rgba(255,111,0,0.1); }
.delete-btn:hover { color: #ef4444; background: rgba(239,68,68,0.1); }

/* Emoji reaction picker */
.reaction-picker {
    position: fixed;
    z-index: 9999;
    background: #1a1a26;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 6px 10px;
    display: flex;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    animation: pickerIn 0.15s var(--ease-spring);
}
@keyframes pickerIn {
    from { opacity: 0; transform: scale(0.85) translateY(6px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.reaction-opt {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 3px;
    border-radius: 6px;
    transition: transform var(--transition-fast), background var(--transition-fast);
    line-height: 1;
}
.reaction-opt:hover { transform: scale(1.3); background: rgba(255,255,255,0.08); }

/* Reaction chips on message */
.msg-reactions {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
    padding: 0 2px;
}
.reaction-chip {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 2px 7px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.reaction-chip:hover { background: rgba(255,111,0,0.12); border-color: rgba(255,111,0,0.3); }
.reaction-chip.mine  { background: rgba(255,111,0,0.15); border-color: rgba(255,111,0,0.4); color: var(--primary, #FF6F00); }
.reaction-chip span  { font-size: 0.7rem; color: rgba(255,255,255,0.6); }

/* Message search */
#msg-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}
#msg-search-wrap.open {
    max-height: 60px;
    padding: 8px 16px;
}
#msg-search-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: white;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition-fast);
}
#msg-search-input:focus { border-color: var(--primary, #FF6F00); }
#msg-search-input::placeholder { color: rgba(255,255,255,0.3); }

/* Highlighted message */
.msg-highlight .message-bubble {
    outline: 2px solid var(--primary, #FF6F00);
    outline-offset: 2px;
    border-radius: 14px;
    animation: highlightPulse 0.5s ease;
}
@keyframes highlightPulse {
    0%   { outline-color: #fff; }
    100% { outline-color: var(--primary, #FF6F00); }
}

/* Date separator */
.msg-date-sep {
    align-self: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.04);
    padding: 3px 12px;
    border-radius: 20px;
    margin: 10px 0 4px;
    user-select: none;
}

/* Load older messages button */
.load-older-btn {
    align-self: center;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    cursor: pointer;
    padding: 6px 16px;
    font-family: inherit;
    margin-bottom: 8px;
    transition: all var(--transition-fast);
}
.load-older-btn:hover { background: rgba(255,255,255,0.08); color: white; }

/* ══════════════════════════════════════════════════════════════════════════
   6. NOTIFICATION PAGE
══════════════════════════════════════════════════════════════════════════ */
.notif-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 10px;
}
.notif-page-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
}
.notif-mark-all-btn {
    background: rgba(255,111,0,0.1);
    border: 1px solid rgba(255,111,0,0.25);
    color: var(--primary, #FF6F00);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: background var(--transition-fast);
}
.notif-mark-all-btn:hover { background: rgba(255,111,0,0.18); }

.notif-page-list { display: flex; flex-direction: column; max-width: 680px; margin: 0 auto; padding: 1rem 2rem 3rem; }

.notif-page-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
    position: relative;
    margin-bottom: 4px;
}
.notif-page-item:hover    { background: rgba(255,255,255,0.04); transform: translateX(3px); }
.notif-page-item.unread   { background: rgba(255,111,0,0.05); }
.notif-page-item:hover.unread { background: rgba(255,111,0,0.09); }

.npi-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.npi-content { flex: 1; min-width: 0; }
.npi-title   { display: block; font-size: 0.9rem; color: #f0f0f5; margin-bottom: 3px; }
.npi-body    { display: block; font-size: 0.8rem; color: #7a7a96; line-height: 1.4; margin: 0 0 5px; }
.npi-time    { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.npi-dot     { width: 8px; height: 8px; border-radius: 50%; background: var(--primary, #FF6F00); flex-shrink: 0; margin-top: 6px; }

.notif-page-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: rgba(255,255,255,0.4);
    max-width: 400px;
    margin: 0 auto;
}
.npe-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.3; }
.notif-page-empty h3 { font-size: 1.2rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.notif-page-empty p  { font-size: 0.88rem; line-height: 1.5; }

.notif-see-all { font-size: 0.75rem; color: var(--primary, #FF6F00); text-decoration: none; }
.notif-see-all:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════════════════
   7. TRUST BADGE
══════════════════════════════════════════════════════════════════════════ */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: color-mix(in srgb, var(--trust-color, #FF6F00) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--trust-color, #FF6F00) 35%, transparent);
    border-radius: 20px;
    padding: 4px 12px 4px 8px;
    color: var(--trust-color, #FF6F00);
    font-size: 0.78rem;
    font-weight: 600;
}
.trust-bar {
    width: 40px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.trust-fill {
    height: 100%;
    background: var(--trust-color, #FF6F00);
    border-radius: 2px;
    transition: width 1s var(--ease-out-expo);
}
.trust-score { font-size: 0.7rem; opacity: 0.7; }

/* ══════════════════════════════════════════════════════════════════════════
   8. LOAD MORE / INFINITE SCROLL
══════════════════════════════════════════════════════════════════════════ */
.scroll-sentinel {
    height: 1px;
    width: 100%;
    visibility: hidden;
}
.load-more-indicator {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ══════════════════════════════════════════════════════════════════════════
   9. MODAL TRANSITIONS (global upgrade)
══════════════════════════════════════════════════════════════════════════ */
/* All overlays use the same fade-scale pattern */
[class$="-overlay"],
[id$="-overlay"],
.gi-overlay,
.upgrade-overlay,
#onboarding-overlay {
    transition: opacity var(--transition-slow);
}

/* All modals use slide-up-scale */
.gi-modal,
.ob-modal,
.upgrade-modal,
.group-modal {
    transition: transform var(--transition-slow), opacity var(--transition-slow);
}

/* ══════════════════════════════════════════════════════════════════════════
   10. BUTTON MICRO-INTERACTIONS
══════════════════════════════════════════════════════════════════════════ */
.btn-primary,
.btn-secondary,
.card-btn,
.send-btn,
.gi-save-btn,
.group-submit-btn,
.upgrade-cta-primary {
    transition: filter var(--transition-fast), transform var(--transition-fast),
                box-shadow var(--transition-fast);
}

.btn-primary:hover,
.card-btn.primary:hover,
.send-btn:hover,
.gi-save-btn:hover,
.group-submit-btn:hover,
.upgrade-cta-primary:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

.btn-primary:active,
.card-btn:active,
.send-btn:active {
    transform: translateY(0) scale(0.97);
    filter: brightness(0.95);
    transition-duration: 60ms;
}

/* Icon button hover */
.icon-btn-secondary {
    transition: color var(--transition-fast), background var(--transition-fast),
                transform var(--transition-fast);
}
.icon-btn-secondary:hover { transform: scale(1.1); }
.icon-btn-secondary:active{ transform: scale(0.95); }

/* ══════════════════════════════════════════════════════════════════════════
   11. FILTER PANEL — SMOOTH INTERACTIONS
══════════════════════════════════════════════════════════════════════════ */
.filter-group select,
.filter-group input {
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
                background var(--transition-fast);
}

.filter-tag {
    animation: tagIn 0.2s var(--ease-spring) backwards;
}
@keyframes tagIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════════════════════════════════════════
   12. CONVERSATION LIST — SMOOTH ITEMS
══════════════════════════════════════════════════════════════════════════ */
.conv-item {
    transition: background var(--transition-fast), border-left-color var(--transition-fast),
                opacity var(--transition-fast);
    animation: convIn 0.25s var(--ease-smooth) backwards;
}
@keyframes convIn {
    from { opacity: 0; transform: translateX(-8px); }
    to   { opacity: 1; transform: translateX(0); }
}

.conv-unread-dot { animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse {
    0%,100% { opacity: 1; }
    50%     { opacity: 0.5; }
}

/* ══════════════════════════════════════════════════════════════════════════
   13. MESSAGE BUBBLES — SMOOTH ENTER
══════════════════════════════════════════════════════════════════════════ */
.msg-row {
    animation: msgIn 0.22s var(--ease-spring) backwards;
}
@keyframes msgIn {
    from { opacity: 0; transform: translateY(10px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.msg-row-sent     .message-bubble { transition: background var(--transition-fast); }
.msg-row-received .message-bubble { transition: background var(--transition-fast); }

/* Read tick color transition */
.read-ticks { transition: color 0.4s ease; }

/* ══════════════════════════════════════════════════════════════════════════
   14. PERSONALIZED STRIP — HORIZONTAL SCROLL SMOOTH
══════════════════════════════════════════════════════════════════════════ */
.ps-scroll {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.ps-card {
    scroll-snap-align: start;
    transition: transform var(--transition-base), border-color var(--transition-base),
                background var(--transition-base), box-shadow var(--transition-base);
}
.ps-card:hover { box-shadow: 0 4px 16px rgba(255,111,0,0.2); }

/* ══════════════════════════════════════════════════════════════════════════
   15. FOCUS STYLES (accessibility + polish)
══════════════════════════════════════════════════════════════════════════ */
:focus-visible {
    outline: 2px solid var(--primary, #FF6F00);
    outline-offset: 3px;
    border-radius: 4px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}

/* ══════════════════════════════════════════════════════════════════════════
   16. SCROLLBAR POLISH
══════════════════════════════════════════════════════════════════════════ */
::-webkit-scrollbar        { width: 5px; height: 5px; }
::-webkit-scrollbar-track  { background: transparent; }
::-webkit-scrollbar-thumb  { background: rgba(255,255,255,0.1); border-radius: 10px; transition: background 0.2s; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,111,0,0.5); }

/* ══════════════════════════════════════════════════════════════════════════
   17. NOTIF SKELETON
══════════════════════════════════════════════════════════════════════════ */
.notif-skel-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ══════════════════════════════════════════════════════════════════════════
   18. PREMIUM LOCKED FEATURE INDICATOR
══════════════════════════════════════════════════════════════════════════ */
.premium-locked {
    position: relative;
    pointer-events: none;
    opacity: 0.5;
    user-select: none;
}
.premium-locked::after {
    content: '🔒 Premium';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,111,0,0.9);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    pointer-events: all;
    cursor: pointer;
}

/* ══════════════════════════════════════════════════════════════════════════
   19. PREMIUM INDICATOR BADGES
══════════════════════════════════════════════════════════════════════════ */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1200;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}
.boost-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,111,0,0.15);
    border: 1px solid rgba(255,111,0,0.4);
    color: #FF6F00;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
}

/* ══════════════════════════════════════════════════════════════════════════
   20. MEDIA QUERIES — SMOOTH RESPONSIVE LAYOUT
══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}