:root {
    --primary: #FFD700;
    --primary-hover: #E5C100;
    --bg-dark: #FFFFFF;
    --surface: #F5F5F7;
    --surface-light: #E0E0E0;
    --text-main: #000000;
    --text-muted: #666666;
    --border: rgba(255, 215, 0, 0.3);
    --danger: #FF4444;
    --success: #00CC66;
    --font-main: 'Outfit', sans-serif;
    --nav-height: 60px;
    --bottom-nav-height: 70px;
}

[data-theme="light"] {
    --bg-dark: #FFFFFF;
    --surface: #FFFFFF;
    --surface-light: #F8F8F8;
    --text-main: #000000;
    --text-muted: #666666;
    --border: #E5E5E5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 100%;
    height: 100%;
}

/* Main App Body Background */
body {
    font-family: var(--font-main);
    background-color: var(--bg-dark) !important;
    color: var(--text-main) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width: 100%;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    /* Disable any Z-axis overflow or depth issues */
    perspective: none !important;
}

/* SVG Background Animation */
/* SVG Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: url('../bg-animation.svg') no-repeat center center;
    background-size: cover;
}

/* Hiding old orbs/grid as replaced by SVG */
/* Active Animated Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 40s infinite ease-in-out;
    display: block;
    z-index: -1;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(128, 128, 128, 0.4) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}


@keyframes panGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-40px, -40px);
    }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #222222;
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--primary);
    top: 40%;
    left: 60%;
    opacity: 0.1;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(50px, 50px);
    }

    50% {
        transform: translate(0, 100px);
    }

    75% {
        transform: translate(-50px, 50px);
    }
}

.app-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    /* Transparent back to show the body background */
    background: transparent;
    backdrop-filter: none;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    padding-bottom: calc(var(--bottom-nav-height) + 40px);
}

.center-xy {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.card {
    background: rgba(20, 20, 20, 0.4);
    /* Much more transparent */
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* More subtle border */
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    /* Softer shadow */
    animation: fadeIn 0.8s ease-out;
}

.premium-header {
    margin-bottom: 24px;
    text-align: center;
}

.logo-text {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.subtitle {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 400;
}

.btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.btn-primary:active {
    transform: scale(0.98);
}

@media (hover: hover) {
    .btn-primary:hover {
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
    }
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
}

@media (hover: hover) {
    .btn-outline:hover {
        border-color: var(--text-main);
        background: rgba(255, 255, 255, 0.05);
    }
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.input-group {
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Glassy Input */
    border: 1px solid var(--border);
    padding: 16px;
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 16px;
    transition: 0.3s;
    backdrop-filter: blur(4px);
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.1);
}

.role-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

@media (hover: hover) {
    .role-card:hover {
        border-color: var(--primary);
        background: rgba(255, 255, 255, 0.08);
    }
}

.role-card.selected {
    border-color: var(--primary);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.warning-box {
    background: rgba(255, 68, 68, 0.1);
    border-left: 3px solid var(--danger);
    padding: 12px;
    border-radius: 4px;
    font-size: 13px;
    color: #ffcccc;
    margin: 16px 0;
    line-height: 1.5;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

input[type="checkbox"]:checked+.checkbox-wrapper .custom-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}

.key-input-container {
    display: flex;
    grid-gap: 8px;
    margin-bottom: 24px;
}

.key-segment {
    flex: 1;
    text-align: center;
    font-family: monospace;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.dash-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 140px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

@media (hover: hover) {
    .dash-card:hover {
        border-color: var(--primary);
        background: rgba(255, 255, 255, 0.08);
    }
}

.nav-bottom {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    height: var(--bottom-nav-height);
    background: rgba(20, 20, 20, 0.98);
    /* Slightly more solid */
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 99999 !important;
    /* ULTRA HIGH Z-INDEX */
    border-radius: 24px 24px 0 0;
    flex-wrap: nowrap;
    /* PREVENT WRAPPING (Requested/Suspected fix) */
    padding: 0 10px;
}

.nav-item {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: 0.3s;
}

.nav-item.active {
    color: var(--primary);
}

.nav-item svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin-bottom: 20px;
}

.header-title {
    font-size: 20px;
    font-weight: 600;
}

.profile-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary);
}

.step-indicator {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.step {
    flex: 1;
    height: 4px;
    background: var(--surface-light);
    border-radius: 2px;
}

.step.active {
    background: var(--primary);
}

.list-item {
    background: rgba(255, 255, 255, 0.04);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    backdrop-filter: blur(6px);
}

@media (hover: hover) {
    .list-item:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-yellow {
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary);
}

/* -------------------------------------------------- */
/* RESPONSIVE DESKTOP TRANSFORMATION                  */
/* -------------------------------------------------- */

@media (min-width: 768px) {

    /* Main Layout: Desktop "App in a Box" Mode */
    body {
        align-items: center;
        /* Center horizontally & vertically */
        justify-content: center;
        padding: 0;
        /* Remove padding to handle simplified box model */
        height: 100vh;
        overflow: hidden;
        /* CRITICAL: Prevent body scroll so elements don't desync */
    }

    /* Expand App Container to Dashboard Width */
    .app-container {
        max-width: 1024px;

        /* Merged Glass Aesthetic */
        background: linear-gradient(145deg, rgba(20, 20, 20, 0.65), rgba(10, 10, 10, 0.8));
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);

        border: 1px solid rgba(255, 255, 255, 0.08);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 24px;

        /* Fixed height: Full viewport minus top/bottom margins (e.g. 40px each side = 80px total) */
        height: calc(100vh - 80px);
        width: 95%;
        /* Responsive width */

        overflow-y: auto;
        /* Internal scrolling */
        margin: 0;
        /* Centered by flex body */

        box-shadow:
            0 40px 100px -20px rgba(0, 0, 0, 0.9),
            inset 0 0 0 1px rgba(255, 255, 255, 0.02);

        /* Padding to prevent content being hidden behind nav */
        padding-bottom: 90px !important;

        scrollbar-width: none;
        -ms-overflow-style: none;
        position: relative;
        /* Context */
    }

    .app-container::-webkit-scrollbar {
        display: none;
    }

    /* Fixed Desktop Footer Nav - Extreme Bottom */
    .nav-bottom {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1024px;
        /* Matches app-container width */

        border-radius: 24px 24px 0 0;
        border-top: 1px solid var(--border);
        background: #000000;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
        justify-content: space-evenly;
        z-index: 1000;
        height: 70px;
        margin: 0;
        /* Ensure it matches the container's positioning logic */
    }
}

/* Wrapper for positioning nav correctly if outside */
body {
    position: relative;
}

.nav-item {
    flex-direction: column;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 12px;
}

.nav-item span {
    font-size: 13px;
    font-weight: 500;
}

/* Grid Layouts for Desktop - Keep 2 columns for cleaner look */
.dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


textarea {
    width: 100%;
    min-height: 150px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 16px;
    resize: vertical;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

textarea:focus {
    outline: none;
    border-color: var(--primary);
}

select {
    width: 100%;
    background: var(--surface-light);
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 8px;
    color: var(--text-main);
    margin-bottom: 16px;
}

.counter-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-light);
    padding: 8px;
    border-radius: 8px;
}

.counter-btn {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-val {
    flex: 1;
    text-align: center;
    font-weight: 600;
}

.paper-preview {
    background: white;
    color: black;
    padding: 40px;
    border-radius: 4px;
    min-height: 80vh;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    font-family: 'Times New Roman', serif;
    margin-bottom: 24px;
}

.paper-header {
    text-align: center;
    border-bottom: 2px solid black;
    padding-bottom: 12px;
    margin-bottom: 24px;
}

.question-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.q-num {
    font-weight: bold;
    min-width: 24px;
}

.toolbar {
    position: sticky;
    top: 20px;
    background: #111111;
    backdrop-filter: blur(10px);
    padding: 12px;
    border-radius: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
    z-index: 100;
    border: 1px solid var(--border);
}


/* -------------------------------------------------- */
/* INDUSTRIAL PREMIUM UI KIT                          */
/* -------------------------------------------------- */

/* 1. Premium Glass Card */
.card-premium {
    background: rgba(18, 18, 18, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: 48px;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.8),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Subtle inner noise/shine overlay */
.card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* 2. Premium Typography */
.text-gradient-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #9E7F06 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(253, 185, 49, 0.15);
}

.text-gradient-silver {
    background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 3. Liquid Glass Input */
.input-premium {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 20px 24px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.input-premium:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--primary);
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(255, 215, 0, 0.1);
}

.input-premium::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 400;
}

/* 4. Industrial Metallic Button */
.btn-premium {
    background: linear-gradient(180deg, #FFD700 0%, #F5C300 100%);
    color: #1a1a1a;
    border: none;
    padding: 20px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 6px 0 #B89200,
        /* 3D bottom edge */
        0 15px 25px rgba(0, 0, 0, 0.4);
    /* soft shadow */
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: transform 0.6s;
}

.btn-premium:hover::after {
    transform: rotate(45deg) translate(0, 0);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 0 #B89200,
        0 20px 35px rgba(0, 0, 0, 0.5);
}

.btn-premium:active {
    transform: translateY(4px);
    box-shadow:
        0 2px 0 #B89200,
        0 5px 10px rgba(0, 0, 0, 0.3);
}

.btn-premium:disabled {
    background: #333;
    color: #666;
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
}

/* 5. Wizard Progress */
.wizard-step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    padding: 0 4px;
}

.wizard-progress-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

.wizard-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, #FFF59D 100%);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    position: relative;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 6. Interactive Selection Card (Role/Stream) */
.selection-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px 24px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
}

.selection-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.15);
}

.selection-card.selected {
    border-color: var(--primary);
    background: linear-gradient(160deg, rgba(255, 215, 0, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow:
        0 0 0 2px var(--primary),
        0 20px 50px -10px rgba(255, 215, 0, 0.15);
}

.selection-icon {
    font-size: 42px;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s;
}

.selection-card:hover .selection-icon {
    transform: scale(1.15) rotate(5deg);
}

/* 7. Tags */
.industrial-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Specialized BEE AI Nav Item */
.nav-item.ai-nav {
    position: relative;
    padding-bottom: 2px !important;
    min-width: 60px;
    /* Ensure space */
}

.nav-item.ai-nav svg {
    color: var(--primary) !important;
    stroke: var(--primary) !important;
    /* Force stroke color */
}

.nav-item.ai-nav::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 18px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
    animation: ai-dot-pulse 1.5s infinite linear;
    z-index: 10;
}

@keyframes ai-dot-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 5px var(--primary);
    }

    50% {
        transform: scale(1.8);
        opacity: 0.5;
        box-shadow: 0 0 20px var(--primary);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 5px var(--primary);
    }
}

.nav-item.ai-nav:hover svg {
    transform: translateY(-3px) scale(1.1);
    filter: drop-shadow(0 0 12px var(--primary));
}

/* --- PERFORMANCE & EMPTY STATES --- */
.skeleton {
    background: linear-gradient(90deg, #1A1A1A 25%, #222222 50%, #1A1A1A 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite linear;
    border-radius: 8px;
    color: transparent !important;
}

@keyframes skeletonShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.empty-state {
    padding: 60px 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 20px 0;
}

.empty-icon {
    font-size: 48px;
    opacity: 0.2;
}

.empty-title {
    font-size: 18px;
    font-weight: 800;
    color: #888;
}

.empty-text {
    font-size: 13px;
    color: #666;
    max-width: 250px;
}