/* ============================================================
   SMMpro Desktop Polish — Large Screen UI/UX Refinements
   Optimizations for 1024px → 2560px+ (Ultrawide)
   ============================================================
   
   This file layers desktop-specific polish on top of the
   existing design system. It does NOT change branding, colors,
   or core layout structure.
   ============================================================ */


/* ================================================================
   1. ULTRAWIDE CONTAINMENT
   Prevent content from stretching unreadably on wide monitors.
   ================================================================ */

@media (min-width: 1440px) {
    .app-content.container-fluid {
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    /* When sidebar is visible, offset the center */
    .sidebar-wrapper .app-content.container-fluid {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (min-width: 1920px) {
    .app-content.container-fluid {
        max-width: 1720px;
        padding-left: 48px !important;
        padding-right: 48px !important;
    }
}

@media (min-width: 2560px) {
    .app-content.container-fluid {
        max-width: 1800px;
    }
}

/* Public pages — tighter containment for readability */
.public-page main .container,
.public-page main .container-smm {
    max-width: 1200px;
}
@media (min-width: 1440px) {
    .public-page main .container-wide {
        max-width: 1400px;
    }
}


/* ================================================================
   2. TYPOGRAPHY SCALING — Larger Screens
   ================================================================ */

@media (min-width: 1440px) {
    .page-title {
        font-size: 34px;
        letter-spacing: -0.025em;
    }
    .page-subtitle {
        font-size: 16px;
        line-height: 1.6;
        max-width: 600px;
    }
    .page-eyebrow {
        font-size: 12px;
        letter-spacing: 0.1em;
    }
    h1, .h1 { font-size: 36px; }
    h2, .h2 { font-size: 28px; }
    h3, .h3 { font-size: 22px; }
    h4, .h4 { font-size: 18px; }
    h5, .h5 { font-size: 16px; }
}

@media (min-width: 1920px) {
    .page-title {
        font-size: 38px;
    }
    .page-subtitle {
        font-size: 17px;
    }
    h1, .h1 { font-size: 40px; }
    h2, .h2 { font-size: 30px; }
}

/* Better line lengths for body text */
.page-subtitle,
.body-text,
article p {
    max-width: 720px;
}


/* ================================================================
   3. SPACING SCALE-UP — XL Screens
   ================================================================ */

@media (min-width: 1440px) {
    /* Increase section margins */
    .mb-5 { margin-bottom: 3.5rem !important; }
    .mb-4 { margin-bottom: 2rem !important; }
    .py-4 { padding-top: 2rem !important; padding-bottom: 2rem !important; }

    /* Wider grid gaps */
    .row.g-3 { --bs-gutter-x: 1.25rem; --bs-gutter-y: 1.25rem; }
    .row.g-4, .row.g-md-4 { --bs-gutter-x: 2rem; --bs-gutter-y: 2rem; }
    .row.g-xl-5 { --bs-gutter-x: 2.5rem; --bs-gutter-y: 2.5rem; }

    /* Page intro spacing */
    .page-intro { margin-bottom: 2.5rem; }
}

@media (min-width: 1920px) {
    .row.g-4, .row.g-md-4 { --bs-gutter-x: 2.5rem; --bs-gutter-y: 2.5rem; }
}


/* ================================================================
   4. CARD REFINEMENTS
   ================================================================ */

/* Subtle border and shadow hierarchy */
.card-smm {
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.card-smm:hover {
    border-color: rgba(91, 75, 251, 0.08);
}

/* Shadow-premium refinement */
.shadow-premium {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04),
                0 10px 40px -10px rgba(91, 75, 251, 0.12),
                0 0 0 1px rgba(0, 0, 0, 0.02);
}
.shadow-premium:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04),
                0 15px 50px -12px rgba(91, 75, 251, 0.2),
                0 0 0 1px rgba(91, 75, 251, 0.1);
}

@media (min-width: 1440px) {
    .card-smm {
        border-radius: 22px;
    }
    .panel-card {
        border-radius: 20px;
    }
    .panel-card-body {
        padding: 28px;
    }
    .panel-card-header {
        padding: 20px 28px;
    }
}


/* ================================================================
   5. TABLE ENHANCEMENTS
   ================================================================ */

/* Alternating row subtle shading */
.table-smm tbody tr:nth-child(even) {
    background: rgba(250, 250, 252, 0.5);
}
.table-smm tbody tr:nth-child(even):hover {
    background: rgba(91, 75, 251, 0.025);
}

/* Improve readability on large screens */
@media (min-width: 1440px) {
    .table-smm td {
        padding: 16px 18px;
        font-size: 14px;
        line-height: 1.5;
    }
    .table-smm thead th {
        padding: 16px 18px;
        font-size: 11px;
    }
    .data-table td {
        padding: 16px 18px;
    }
    .data-table th {
        padding: 14px 18px;
    }
}

/* Table responsive wrapper polish */
.table-responsive {
    border-radius: 0 0 var(--radius-card) var(--radius-card);
}


/* ================================================================
   6. FORM CONTROL UNIFICATION
   ================================================================ */

/* Ensure all form inputs share the same refined style */
.form-control-smm,
.input-smm,
.form-select-smm,
.input-elite,
.form-floating-smm .form-control-smm {
    display: block;
    width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    border-radius: 12px;
    border: 1px solid var(--smm-grey-mid);
    background: var(--smm-white);
    transition: all 0.2s ease;
    color: var(--text-heading);
}

.form-control-smm:focus,
.input-smm:focus,
.form-select-smm:focus {
    border-color: var(--smm-primary);
    box-shadow: 0 0 0 4px rgba(91, 75, 251, 0.08);
    outline: none;
    background: var(--smm-white);
}

/* Floating label polish — Professional SaaS Style */
.form-floating-smm {
    position: relative;
    margin-bottom: 0;
}

.form-floating-smm .form-control-smm {
    height: calc(3.5rem + 2px);
    padding: 1.25rem 1rem 0.25rem 1rem;
    line-height: 1.25;
}

.form-floating-smm label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 1rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity .1s ease-in-out, transform .1s ease-in-out;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    align-items: center;
}

.form-floating-smm .form-control-smm:focus ~ label,
.form-floating-smm .form-control-smm:not(:placeholder-shown) ~ label {
    opacity: 1;
    transform: scale(.8) translateY(-1rem) translateX(0.1rem);
    font-weight: 800;
    color: var(--smm-primary);
    background: white;
    padding: 0 4px;
    height: auto;
}

/* Select dropdowns — custom arrow */
.form-control-smm[name],
select.form-control-smm {
    appearance: auto;
}

@media (min-width: 1440px) {
    .form-control-smm,
    .input-smm,
    .form-select-smm {
        padding: 14px 18px;
        font-size: 15px;
    }
    .form-floating-smm label {
        font-size: 11px;
    }
}


/* ================================================================
   7. DROPDOWN MENUS — Unified Style
   ================================================================ */

.dropdown-menu {
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(0, 0, 0, 0.03);
    padding: 8px;
    animation: dropdownFadeIn 0.2s ease;
    min-width: 200px;
}

.dropdown-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-heading);
    border-radius: 10px;
    padding: 10px 14px;
    transition: all 0.15s ease;
}
.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--smm-lavender);
    color: var(--smm-primary);
}
.dropdown-item i {
    width: 18px;
    text-align: center;
}

.dropdown-divider {
    margin: 4px 0;
    border-color: var(--smm-grey-light);
    opacity: 0.6;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-8px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}


/* ================================================================
   8. BUTTON REFINEMENTS
   ================================================================ */

/* Consistent transition & icon alignment */
.btn-smm {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.4;
}
.btn-smm i {
    font-size: 1em;
    line-height: 1;
}

/* Button group SMMpro */
.btn-group {
    border-radius: 12px;
    overflow: hidden;
}
.btn-group .btn-smm {
    border-radius: 0;
}
.btn-group .btn-smm:first-child {
    border-radius: 12px 0 0 12px;
}
.btn-group .btn-smm:last-child {
    border-radius: 0 12px 12px 0;
}

/* Ghost button subtle hover */
.btn-smm-ghost:hover {
    background: var(--smm-lavender);
}

@media (min-width: 1440px) {
    .btn-smm { padding: 12px 22px; }
    .btn-smm-sm { padding: 8px 16px; font-size: 12px; }
    .btn-smm-lg { padding: 14px 28px; }
}


/* ================================================================
   9. BADGE REFINEMENTS
   ================================================================ */

.badge-smm {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.04em;
    border-radius: 8px;
    line-height: 1.2;
}


/* ================================================================
   10. SIZE UTILITIES (Used across pages but never defined)
   ================================================================ */

.w-8 { width: 32px; }
.h-8 { height: 32px; }
.w-10 { width: 40px; }
.h-10 { height: 40px; }
.w-12 { width: 48px; }
.h-12 { height: 48px; }
.w-14 { width: 56px; }
.h-14 { height: 56px; }
.w-16 { width: 64px; }
.h-16 { height: 64px; }
.w-24 { width: 96px; }

/* Flex center shorthand */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-start {
    display: flex;
    align-items: center;
}

/* Size utilities as combined */
.size-sm { width: 32px; height: 32px; min-width: 32px; }
.size-md { width: 40px; height: 40px; min-width: 40px; }
.size-lg { width: 48px; height: 48px; min-width: 48px; }
.size-xl { width: 56px; height: 56px; min-width: 56px; }

/* Round icon containers */
.rounded-lg { border-radius: 12px !important; }
.rounded-xl { border-radius: 16px !important; }
.rounded-2xl { border-radius: 20px !important; }
.rounded-full { border-radius: 9999px !important; }

/* Background helpers with alpha */
.bg-lavender { background: var(--smm-lavender) !important; }
.bg-primary { background: var(--smm-primary) !important; }
.text-primary { color: var(--smm-primary) !important; }
.text-navy { color: var(--text-heading) !important; }
.text-muted-smm { color: var(--text-muted) !important; }
.text-slate { color: var(--text-body) !important; }


/* ================================================================
   11. CHART CONTAINER IMPROVEMENTS
   ================================================================ */

.chart-canvas-wrap {
    position: relative;
    width: 100%;
    height: 380px;
}

@media (min-width: 1440px) {
    .chart-canvas-wrap {
        height: 400px;
    }
}

@media (min-width: 1920px) {
    .chart-canvas-wrap {
        height: 420px;
    }
}

/* Ensure Chart.js canvas respects container */
.chart-canvas-wrap canvas {
    width: 100% !important;
    height: 100% !important;
}


/* ================================================================
   12. MODAL REFINEMENTS
   ================================================================ */

@media (min-width: 1200px) {
    .modal-dialog {
        max-width: 640px;
    }
    .modal-lg {
        max-width: 860px;
    }
}

.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-modal);
    overflow: hidden;
}
.modal-header {
    border-bottom: 1px solid var(--smm-grey-light);
    padding: 20px 24px;
}
.modal-body {
    padding: 24px;
}
.modal-footer {
    border-top: 1px solid var(--smm-grey-light);
    padding: 16px 24px;
    gap: 12px;
}
.modal-title {
    font-weight: 800;
    font-size: 18px;
    color: var(--text-heading);
}


/* ================================================================
   13. PAGINATION REFINEMENTS
   ================================================================ */

.pagination-bar,
.d-flex.justify-content-center.gap-3 {
    gap: 8px;
}

/* Style pagination containers */
.pagination .page-link,
.btn-smm.btn-smm-secondary[href*="page="] {
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s ease;
}


/* ================================================================
   14. EMPTY STATE REFINEMENTS
   ================================================================ */

.state-empty,
.empty-panel {
    background: linear-gradient(180deg, var(--smm-white) 0%, var(--smm-off-white) 100%);
    border: 1px dashed var(--smm-grey-mid);
}

.state-empty h3,
.state-empty h4 {
    font-weight: 800;
    color: var(--text-heading);
}

.state-empty p {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 1440px) {
    .state-empty {
        padding: 80px 40px;
        min-height: 420px;
    }
    .empty-state-large {
        padding: 120px 60px;
    }
}


/* ================================================================
   15. ALERT & NOTIFICATION REFINEMENTS
   ================================================================ */

.alert {
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
}

.panel-alert {
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* ================================================================
   16. SIDEBAR POLISH — Large Screens
   ================================================================ */

@media (min-width: 1440px) {
    .app-sidebar {
        width: 270px;
    }
    .app-main.sidebar-wrapper.content-area {
        margin-left: 270px;
    }
    .nav-item-elite {
        padding: 11px 16px;
        font-size: 14px;
    }
    .sidebar-header {
        padding: 24px 20px;
    }
}

@media (min-width: 1920px) {
    .app-sidebar {
        width: 280px;
    }
    .app-main.sidebar-wrapper.content-area {
        margin-left: 280px;
    }
}


/* ================================================================
   17. HEADER POLISH — Large Screens
   ================================================================ */

@media (min-width: 1440px) {
    .app-header {
        padding: 0 32px 0 36px;
    }
    .header-search-bar {
        width: 360px;
        font-size: 14px;
    }
    .header-icon-btn {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 1920px) {
    .header-search-bar {
        width: 420px;
    }
}


/* ================================================================
   18. BENTO GRID — Large Screen Optimization
   ================================================================ */

@media (min-width: 1440px) {
    .elite-bento-grid {
        gap: 28px;
    }
    .bento-item {
        border-radius: 26px;
        padding: 32px;
    }
    .kpi-elite .kpi-value {
        font-size: 36px;
    }
}

@media (min-width: 1920px) {
    .elite-bento-grid {
        gap: 32px;
    }
    .bento-item {
        padding: 36px;
    }
    .kpi-elite .kpi-value {
        font-size: 40px;
    }
}


/* ================================================================
   19. SCROLLBAR POLISH
   ================================================================ */

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Sidebar scrollbar */
.app-sidebar::-webkit-scrollbar-thumb {
    background: rgba(91, 75, 251, 0.15);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.12) transparent;
}


/* ================================================================
   20. HOVER & INTERACTION REFINEMENTS
   ================================================================ */

/* Smooth hover lift utility */
.hover-up {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-up:hover {
    transform: translateY(-2px);
}

/* Link hover in content */
a.text-primary:hover {
    color: var(--smm-primary-hover) !important;
}

/* Icon button hover state */
.btn-icon-sm:hover,
[class*="w-8"][class*="h-8"]:hover {
    background: var(--smm-lavender) !important;
    color: var(--smm-primary) !important;
}

/* Table row focus */
.table-smm tbody tr:focus-within {
    background: rgba(91, 75, 251, 0.03);
    outline: 2px solid rgba(91, 75, 251, 0.1);
    outline-offset: -2px;
}


/* ================================================================
   21. INLINE STYLES NORMALIZATION
   ================================================================ */

/* text helpers used in many pages without CSS */
.x-small { font-size: 11px; }
.body-small { font-size: 13px; }
.uppercase { text-transform: uppercase; }
.mono { font-family: 'JetBrains Mono', monospace; }
.fw-800 { font-weight: 800; }
.fw-600 { font-weight: 600; }
.ls-wide { letter-spacing: 0.05em; }
.ls-1 { letter-spacing: 0.025em; }
.tracking-tight { letter-spacing: -0.02em; }
.hover-opacity-70:hover { opacity: 0.7; }
.text-decoration-none { text-decoration: none; }

/* Space utilities */
.space-y-3 > * + * { margin-top: 12px; }
.space-y-4 > * + * { margin-top: 16px; }
.gap-1 { gap: 4px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

/* Border utilities used across pages */
.border-primary\/5 { border-color: rgba(91, 75, 251, 0.05) !important; }
.border-primary\/10 { border-color: rgba(91, 75, 251, 0.1) !important; }

/* Background with alpha */
.bg-lavender\/30 { background: rgba(238, 240, 255, 0.3); }
.bg-white\/30 { background: rgba(255, 255, 255, 0.3); }
.bg-white\/40 { background: rgba(255, 255, 255, 0.4); }

/* Color alpha backgrounds used for icon circles */
.bg-primary\/10 { background: rgba(91, 75, 251, 0.1); }
.bg-success\/10 { background: rgba(34, 197, 94, 0.1); }
.bg-purple\/10 { background: rgba(91, 75, 251, 0.1); }
.bg-info\/10 { background: rgba(59, 130, 246, 0.1); }
.text-success { color: var(--smm-success) !important; }
.text-purple { color: var(--smm-primary) !important; }
.text-info { color: var(--smm-info) !important; }
.text-warning { color: var(--smm-warning) !important; }
.text-danger { color: var(--smm-danger) !important; }

/* Icon circle component (used in dashboard KPIs) */
.icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Status dot pulse */
.status-dot-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
}
.status-dot-pulse::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid currentColor;
    animation: statusPulse 2s ease infinite;
    opacity: 0.5;
}
@keyframes statusPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.6); opacity: 0; }
}

/* Shadow utility for primary buttons */
.shadow-primary {
    box-shadow: 0 8px 25px rgba(91, 75, 251, 0.3);
}

/* Progress bar for campaign pages */
.progress.bg-lavender {
    background: var(--smm-lavender) !important;
}


/* ================================================================
   22. ADMIN PANEL — Match User Panel Quality
   ================================================================ */

.admin-shell .app-content.container-fluid {
    padding-top: 28px;
}

.admin-frame .app-sidebar {
    background: linear-gradient(180deg, #0D0D1F 0%, #111128 100%);
}

@media (min-width: 1440px) {
    .admin-shell .app-content.container-fluid {
        max-width: 1600px;
    }
}


/* ================================================================
   23. AUTH PAGES — Desktop Centering
   ================================================================ */

.auth-card-elite {
    max-width: 440px;
    width: 100%;
}

@media (min-width: 1440px) {
    .auth-card-elite {
        max-width: 460px;
    }
    .input-elite {
        padding: 16px 18px 16px 46px;
        font-size: 15px;
    }
}


/* ================================================================
   24. SELECTION HIGHLIGHT
   ================================================================ */

/* ================================================================
   25. UTILITY SCALE-UP
   ================================================================ */

.w-14 { width: 3.5rem !important; }
.h-14 { height: 3.5rem !important; }
.w-16 { width: 4rem !important; }
.h-16 { height: 4rem !important; }
.w-20 { width: 5rem !important; }
.h-20 { height: 5rem !important; }

.rounded-2xl { border-radius: 1.25rem !important; }
.rounded-3xl { border-radius: 1.5rem !important; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-wide { letter-spacing: 0.05em !important; }
.uppercase { text-transform: uppercase !important; }
.fw-800 { font-weight: 800 !important; }

::selection {
    background: rgba(91, 75, 251, 0.15);
    color: var(--text-heading);
}

::-moz-selection {
    background: rgba(91, 75, 251, 0.15);
    color: var(--text-heading);
}


/* ================================================================
   26. PAGE TRANSITION ANIMATION
   ================================================================ */

/* ================================================================
   28. BRAND LOGO RESPONSIVE SYSTEM
   ================================================================ */
.brand-logo-img {
    height: 48px; /* Default height for marketing headers */
    width: auto;
    max-width: 220px; /* Prevent oversized logos on very wide screens */
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Sidebar Branding */
.sidebar-header .brand-logo-img {
    height: 38px;
}

/* Footer Branding */
.footer-public .brand-logo-img {
    height: 52px;
}

/* Auth Branding */
.auth-brand .brand-logo-img {
    height: 48px;
}

/* Tablet Breakpoint (991px) */
@media (max-width: 991px) {
    .brand-logo-img {
        height: 42px !important;
        max-width: 180px;
    }
    .footer-public .brand-logo-img {
        height: 48px !important;
    }
    .auth-brand .brand-logo-img {
        height: 44px !important;
    }
}

/* Mobile Breakpoint (575px) */
@media (max-width: 575px) {
    .brand-logo-img {
        height: 36px !important;
        max-width: 160px;
    }
    .footer-public .brand-logo-img {
        height: 42px !important;
    }
    .auth-brand .brand-logo-img {
        height: 40px !important;
    }
}

@keyframes pageIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.main-content {
    animation: pageIn 0.35s ease both;
}

@media (prefers-reduced-motion: reduce) {
    .main-content { animation: none; }
}


/* ================================================================
   27. SEARCH BAR TRIGGER STYLE
   ================================================================ */

#headerSearchTrigger {
    cursor: pointer;
    user-select: none;
}

/* ================================================================
   29. SKELETON LOADERS (ELITE SHIMMER)
   ================================================================ */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(13, 13, 31, 0.03) 25%,
        rgba(13, 13, 31, 0.06) 37%,
        rgba(13, 13, 31, 0.03) 63%
    );
    background-size: 400% 100%;
    animation: skeleton-shimmer 1.4s ease infinite;
    border-radius: 12px;
    display: block;
}

/* Dark mode support */
body.dark-mode .skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.04) 25%,
        rgba(255, 255, 255, 0.08) 37%,
        rgba(255, 255, 255, 0.04) 63%
    );
    background-size: 400% 100%;
}

@keyframes skeleton-shimmer {
    0% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.skeleton-text { height: 14px; margin-bottom: 8px; width: 100%; }
.skeleton-title { height: 24px; margin-bottom: 12px; width: 40%; }
.skeleton-circle { width: 48px; height: 48px; border-radius: 16px; }
.skeleton-card { height: 120px; width: 100%; border-radius: 20px; }
.skeleton-chart { height: 300px; width: 100%; border-radius: 24px; }
.skeleton-row { height: 60px; width: 100%; margin-bottom: 2px; }

/* ================================================================
   30. ELITE EMPTY STATES
   ================================================================ */
.elite-empty-state {
    padding: 5rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    border: 2px dashed rgba(91, 75, 251, 0.15);
    border-radius: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin: 1rem 0;
}

body.dark-mode .elite-empty-state {
    background: rgba(13, 13, 31, 0.2);
    border-color: rgba(255, 255, 255, 0.05);
}

.empty-state-orb {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--smm-primary) 0%, var(--smm-accent) 100%);
    border-radius: 30px;
    display: grid;
    place-items: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
    box-shadow: 0 20px 40px -10px rgba(91, 75, 251, 0.4);
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.empty-state-title {
    font-weight: 800;
    color: var(--smm-navy);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.empty-state-description {
    color: var(--smm-muted);
    max-width: 400px;
    margin: 0 auto 2.5rem;
    font-weight: 500;
    line-height: 1.6;
}
