/* _content/WebDevEmpire.Web/Components/Layout/MainLayout.razor.rz.scp.css */
/* ============================
   APP SHELL
   ============================ */

.app-shell[b-25jmla1y9z] {
    display: grid;
    grid-template-columns: 240px 1fr 300px;
    height: 100vh;
    background-color: #12121a;
    color: #ffffff;
}

/* ============================
   SIDEBAR
   ============================ */

.app-sidebar[b-25jmla1y9z] {
    background: linear-gradient(180deg, #1b1b2b, #141421);
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-logo[b-25jmla1y9z] {
    /*padding: 1rem;*/
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

    .sidebar-logo img[b-25jmla1y9z] {
        width: 100%;
        /*max-height: 48px;*/
        object-fit: contain;
    }

/* Navigation */
.sidebar-nav[b-25jmla1y9z] {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    height: 100%;
}

.nav-link[b-25jmla1y9z] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #cfd3ff;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

    .nav-link .icon[b-25jmla1y9z] {
        width: 20px;
        text-align: center;
    }

    .nav-link:hover[b-25jmla1y9z] {
        background: rgba(255,255,255,0.06);
    }

    .nav-link.active[b-25jmla1y9z] {
        background: linear-gradient(135deg, #3f51b5, #283593);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(63,81,181,0.45);
    }

/* Badge */
.nav-badge[b-25jmla1y9z] {
    margin-left: auto;
    background: #e53935;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
}

/* Divider */
.nav-divider[b-25jmla1y9z] {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0.5rem 0.25rem;
}

.sidebar-contact[b-25jmla1y9z] {
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
}

.contact-btn[b-25jmla1y9z] {
    background: linear-gradient(135deg, #3f51b5, #283593);
    border: none;
    border-radius: 10px;
    padding: 0.7rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    margin: 1rem;
}
/* ============================
   MAIN AREA
   ============================ */
.app-main[b-25jmla1y9z] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100vh;
}

/* Topbar */
.app-topbar[b-25jmla1y9z] {
    height: 56px;
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, #1e1e30, #191928);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-title[b-25jmla1y9z] {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

/* Content */
.app-content[b-25jmla1y9z] {
    flex: 1;
    overflow-y: auto;
    padding: 1.2rem;
    background-color: #12121a;
}

.app-content[b-25jmla1y9z],
.scrollable[b-25jmla1y9z] {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #3f51b5 #141421; /* thumb / track */
}


/* ============================
   RIGHT SIDEBAR
   ============================ */

.app-rightbar[b-25jmla1y9z] {
    background: linear-gradient(180deg, #1b1b2b, #141421);
    border-left: 1px solid rgba(255,255,255,0.06);
    padding: 0.8rem;
    overflow-y: hidden;
}
/* _content/WebDevEmpire.Web/Components/Pages/Bugs.razor.rz.scp.css */
/* ============================
   BUGS PAGE
   ============================ */

.bugs-page[b-s0389wa62s] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Impact */
.bug-impact[b-s0389wa62s] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.impact-card[b-s0389wa62s] {
    background: linear-gradient(180deg, #232338, #1a1a2a);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.08);
}

    .impact-card .label[b-s0389wa62s] {
        font-size: 0.7rem;
        color: #9aa0b5;
        text-transform: uppercase;
    }

    .impact-card .value[b-s0389wa62s] {
        font-size: 1.2rem;
        font-weight: 700;
    }

    .impact-card .danger[b-s0389wa62s] {
        color: #e53935;
    }

/* Bugs */
.bugs-section h3[b-s0389wa62s] {
    margin-bottom: 0.8rem;
}

.bugs-grid[b-s0389wa62s] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

/* Bug Card */
.bug-card[b-s0389wa62s] {
    background: linear-gradient(180deg, #1e1e30, #161626);
    border-radius: 14px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

/* Severity */
.severity-low[b-s0389wa62s] {
    border-color: rgba(255,193,7,0.5);
}

.severity-medium[b-s0389wa62s] {
    border-color: rgba(255,152,0,0.7);
}

.severity-high[b-s0389wa62s] {
    border-color: rgba(229,57,53,0.9);
}

/* Header */
.bug-header[b-s0389wa62s] {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.bug-desc[b-s0389wa62s] {
    display: block;
    font-size: 0.7rem;
    color: #9aa0b5;
    margin-top: 0.2rem;
}

.bug-severity[b-s0389wa62s] {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: #333;
}

/* Body */
.bug-body[b-s0389wa62s] {
    display: flex;
    justify-content: space-between;
}

.bug-stat[b-s0389wa62s] {
    display: flex;
    flex-direction: column;
}

    .bug-stat .label[b-s0389wa62s] {
        font-size: 0.65rem;
        color: #9aa0b5;
    }

    .bug-stat .value[b-s0389wa62s] {
        font-weight: 700;
    }

/* Footer */
.bug-footer[b-s0389wa62s] {
    display: flex;
    justify-content: flex-end;
}

.btn-fix[b-s0389wa62s] {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    border: none;
    border-radius: 10px;
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #000;
    cursor: pointer;
}

/* Empty */
.empty-state.success[b-s0389wa62s] {
    padding: 1.2rem;
    background: #1a2a1a;
    border-radius: 12px;
    color: #81c784;
}
/* _content/WebDevEmpire.Web/Components/Pages/Dashboard.razor.rz.scp.css */
/* ============================
   DASHBOARD
   ============================ */

.dashboard[b-38keglo8fl] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-section h3[b-38keglo8fl] {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* KPI GRID */
.kpi-grid[b-38keglo8fl] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.kpi-card[b-38keglo8fl] {
    background: linear-gradient(180deg, #232338, #1a1a2a);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255,255,255,0.08);
}

    .kpi-card .label[b-38keglo8fl] {
        font-size: 0.7rem;
        color: #9aa0b5;
        text-transform: uppercase;
    }

    .kpi-card .value[b-38keglo8fl] {
        margin-top: 0.3rem;
        font-size: 1rem;
        font-weight: 700;
    }

/* PRODUCTION */
.production-grid[b-38keglo8fl] {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 1.2rem;
}

.module-card[b-38keglo8fl] {
    background: linear-gradient(180deg, #1e1e30, #171726);
    border-radius: 14px;
    padding: 1rem;
}

    .module-card h4[b-38keglo8fl] {
        margin: 0;
    }

.subtitle[b-38keglo8fl] {
    font-size: 0.75rem;
    color: #9aa0b5;
}

/* Progress */
.progress-block[b-38keglo8fl] {
    margin-top: 0.8rem;
}

.progress-bar[b-38keglo8fl] {
    height: 10px;
    background: #111;
    border-radius: 6px;
    overflow: hidden;
}

    .progress-bar .fill[b-38keglo8fl] {
        height: 100%;
        transition: width 0.2s ease;
    }

.fill.fe[b-38keglo8fl] {
    background: #4fc3f7;
}

.fill.be[b-38keglo8fl] {
    background: #81c784;
}

/* Actions */
.action-card[b-38keglo8fl] {
    background: linear-gradient(180deg, #232338, #1a1a2a);
    border-radius: 14px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.action-btn[b-38keglo8fl] {
    background: linear-gradient(135deg, #3f51b5, #283593);
    border: none;
    border-radius: 10px;
    padding: 0.7rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

    .action-btn:disabled[b-38keglo8fl] {
        opacity: 0.4;
        cursor: not-allowed;
    }

/* Empty */
.empty-state[b-38keglo8fl] {
    padding: 1.2rem;
    background: #1a1a2a;
    border-radius: 12px;
    color: #9aa0b5;
}
/* _content/WebDevEmpire.Web/Components/Pages/Developers.razor.rz.scp.css */
/* ============================
   DEVELOPERS PAGE
   ============================ */

.developers-page[b-q337aqwh3m] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Header */
.page-header[b-q337aqwh3m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .page-header h2[b-q337aqwh3m] {
        margin: 0;
    }

.team-capacity[b-q337aqwh3m] {
    background: linear-gradient(180deg, #232338, #1a1a2a);
    padding: 0.6rem 1rem;
    border-radius: 10px;
}

    .team-capacity .label[b-q337aqwh3m] {
        font-size: 0.7rem;
        color: #9aa0b5;
    }

    .team-capacity .value[b-q337aqwh3m] {
        font-weight: 700;
    }

/* Overview */
.team-overview[b-q337aqwh3m] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.overview-card[b-q337aqwh3m] {
    background: linear-gradient(180deg, #232338, #1a1a2a);
    border-radius: 12px;
    padding: 0.8rem 1rem;
}

    .overview-card .label[b-q337aqwh3m] {
        font-size: 0.7rem;
        color: #9aa0b5;
    }

    .overview-card .value[b-q337aqwh3m] {
        font-size: 1rem;
        font-weight: 700;
    }

/* Team */
.team-section h3[b-q337aqwh3m] {
    margin-bottom: 0.8rem;
}

.developers-grid[b-q337aqwh3m] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

/* Developer Card */
.dev-card[b-q337aqwh3m] {
    background: linear-gradient(180deg, #1e1e30, #161626);
    border-radius: 14px;
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.dev-header[b-q337aqwh3m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dev-level[b-q337aqwh3m] {
    font-size: 0.7rem;
    margin-left: 0.4rem;
    color: #9aa0b5;
}

.btn-fire[b-q337aqwh3m] {
    background: linear-gradient(135deg, #e53935, #952522);
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1.2rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

.btn-cancel[b-q337aqwh3m] {
    background: linear-gradient(135deg, #878a8d, #5c636a);
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1.2rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

.dev-stat[b-q337aqwh3m] {
    display: flex;
    justify-content: space-between;
}

    .dev-stat .label[b-q337aqwh3m] {
        font-size: 0.7rem;
        color: #9aa0b5;
    }

    .dev-stat .value[b-q337aqwh3m] {
        font-weight: 600;
    }

/* Hiring */
.hiring-section[b-q337aqwh3m] {
    margin-top: 1rem;
}

.btn-hire[b-q337aqwh3m] {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1.2rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

.warning-box[b-q337aqwh3m] {
    background: #332018;
    border: 1px solid rgba(255,193,7,0.6);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    color: #ffc107;
    margin-top: 1rem;
}

/* Empty */
.empty-state[b-q337aqwh3m] {
    padding: 1.2rem;
    background: #1a1a2a;
    border-radius: 12px;
    color: #9aa0b5;
}

/*.bulk-fire-panel {
    background: linear-gradient(180deg, #232338, #1a1a2a);
    padding: 0.8rem;
    border-radius: 12px;
}*/

.bulk-fire-controls[b-q337aqwh3m] {
    display: grid;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

    .bulk-fire-controls select[b-q337aqwh3m] {
        background: #1a1a2a;
        border: 1px solid rgba(255,255,255,0.15);
        color: #fff;
        padding: 0.4rem 0.6rem;
        border-radius: 8px;
        height: 100%;
    }
/* _content/WebDevEmpire.Web/Components/Pages/Infra.razor.rz.scp.css */
/* ============================
   INFRASTRUCTURE PAGE
   ============================ */

.infra-page[b-w9x5ob0vje] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Section */
.infra-section h3[b-w9x5ob0vje] {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Card */
.infra-card[b-w9x5ob0vje] {
    background: linear-gradient(180deg, #1e1e30, #161626);
    border-radius: 14px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

    .infra-card.current[b-w9x5ob0vje] {
        border-color: rgba(79,195,247,0.6);
    }

    .infra-card.next.locked[b-w9x5ob0vje] {
        opacity: 0.5;
    }

/* Header */
.infra-header[b-w9x5ob0vje] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .infra-header h4[b-w9x5ob0vje] {
        margin: 0;
    }

/* Tier badge */
.tier-badge[b-w9x5ob0vje] {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: #3f51b5;
    color: #fff;
    font-weight: 700;
}

/* Description */
.infra-desc[b-w9x5ob0vje] {
    font-size: 0.8rem;
    color: #9aa0b5;
}

/* Stats */
.infra-stats[b-w9x5ob0vje] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
}

.infra-stat[b-w9x5ob0vje] {
    background: #12121a;
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
}

    .infra-stat .label[b-w9x5ob0vje] {
        font-size: 0.65rem;
        color: #9aa0b5;
        text-transform: uppercase;
    }

    .infra-stat .value[b-w9x5ob0vje] {
        font-weight: 700;
    }

    .infra-stat.cost .value[b-w9x5ob0vje] {
        color: #ff9800;
    }

/* Footer */
.infra-footer[b-w9x5ob0vje] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Button */
.btn-upgrade[b-w9x5ob0vje] {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

    .btn-upgrade:disabled[b-w9x5ob0vje] {
        opacity: 0.4;
        cursor: not-allowed;
    }

/* Hint */
.hint[b-w9x5ob0vje] {
    font-size: 0.7rem;
    color: #ff9800;
}

/* Empty */
.empty-state.success[b-w9x5ob0vje] {
    padding: 1.2rem;
    background: #1a2a1a;
    border-radius: 12px;
    color: #81c784;
}
/* _content/WebDevEmpire.Web/Components/Pages/Modules.razor.rz.scp.css */
/* ============================
   MODULES PAGE
   ============================ */

.page-title[b-152caqh48m] {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Grid */
.modules-grid[b-152caqh48m] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.2rem;
}

/* Card */
.module-card[b-152caqh48m] {
    background: linear-gradient(180deg, #1e1e30, #161626);
    border-radius: 14px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .module-card:hover[b-152caqh48m] {
        transform: translateY(-3px);
    }

    /* States */
    .module-card.active[b-152caqh48m] {
        border-color: #4fc3f7;
        box-shadow: 0 0 0 1px rgba(79,195,247,0.5);
    }

    .module-card.maxed[b-152caqh48m] {
        border-color: #4caf50;
    }

    .module-card.locked[b-152caqh48m] {
        opacity: 0.45;
    }

/* Header */
.module-header[b-152caqh48m] {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

    .module-header h4[b-152caqh48m] {
        margin: 0;
    }

.module-subtitle[b-152caqh48m] {
    font-size: 0.7rem;
    color: #9aa0b5;
}

/* Status */
.module-status[b-152caqh48m] {
    min-width: 85px;
    display: flex;
    justify-content: flex-end;
}

.status[b-152caqh48m] {
    font-size: 0.65rem;
    padding: 0.2rem 0.45rem;
    border-radius: 12px;
    font-weight: 700;
}

    .status.locked[b-152caqh48m] {
        background: #555;
    }

    .status.success[b-152caqh48m] {
        background: #4caf50;
    }

    .status.active[b-152caqh48m] {
        background: #03a9f4;
    }

    .status.available[b-152caqh48m] {
        background: #607d8b;
    }

    .status.progress[b-152caqh48m] {
        background: #ffc107;
        color: #000;
        min-width: 85px;
    }

/* Body */
.module-body[b-152caqh48m] {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

/* Progress */
.progress-block[b-152caqh48m] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.progress-bar[b-152caqh48m] {
    height: 8px;
    background: #111;
    border-radius: 6px;
    overflow: hidden;
}

.fill[b-152caqh48m] {
    height: 100%;
    transition: width 0.2s ease;
}

    .fill.fe[b-152caqh48m] {
        background: #4fc3f7;
    }

    .fill.be[b-152caqh48m] {
        background: #81c784;
    }

    .fill.animated[b-152caqh48m] {
        animation: pulse-b-152caqh48m 1s infinite alternate;
    }

@keyframes pulse-b-152caqh48m {
    from {
        opacity: 0.7;
    }

    to {
        opacity: 1;
    }
}

/* Economy */
.module-economy[b-152caqh48m] {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
}

    .module-economy .label[b-152caqh48m] {
        font-size: 0.7rem;
        color: #9aa0b5;
    }

    .module-economy .value[b-152caqh48m] {
        font-weight: 700;
    }

/* Footer */
.module-footer[b-152caqh48m] {
    margin-top: 0.8rem;
    display: flex;
    justify-content: flex-end;
}

/* Button */
.btn-module[b-152caqh48m] {
    border-radius: 10px;
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
}

    .btn-module.primary[b-152caqh48m] {
        background: linear-gradient(135deg, #3f51b5, #283593);
        color: #fff;
    }

    .btn-module.secondary[b-152caqh48m] {
        background: #555;
        color: #fff;
    }

/* Empty */
.empty-state[b-152caqh48m] {
    padding: 1.2rem;
    background: #1a1a2a;
    border-radius: 12px;
    color: #9aa0b5;
}
/* _content/WebDevEmpire.Web/Components/Pages/Offices.razor.rz.scp.css */
/* ============================
   OFFICES PAGE LAYOUT
   ============================ */

.offices-page[b-85m294v6j1] {
    margin: 0 auto;
    padding: 1.2rem;
}

/* Header */
.offices-header[b-85m294v6j1] {
    margin-bottom: 1.5rem;
}

    .offices-header h2[b-85m294v6j1] {
        margin: 0;
        font-size: 1.6rem;
        font-weight: 700;
        color: #ffffff;
    }

.subtitle[b-85m294v6j1] {
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: #9aa0b5;
}

/* ============================
   ACTIVE OFFICE SUMMARY
   ============================ */

.office-summary[b-85m294v6j1] {
    margin-bottom: 2rem;
}

.summary-card[b-85m294v6j1] {
    background: linear-gradient(180deg, #232338, #1a1a2a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
}

    .summary-card.warning[b-85m294v6j1] {
        border-color: #fbc02d;
    }

.summary-title[b-85m294v6j1] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9aa0b5;
}

.summary-name[b-85m294v6j1] {
    margin-top: 0.3rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.summary-stats[b-85m294v6j1] {
    display: flex;
    gap: 2rem;
    margin-top: 0.8rem;
}

.summary-stat[b-85m294v6j1] {
    display: flex;
    flex-direction: column;
}

    .summary-stat .label[b-85m294v6j1] {
        font-size: 0.7rem;
        text-transform: uppercase;
        color: #9aa0b5;
    }

    .summary-stat .value[b-85m294v6j1] {
        font-size: 0.95rem;
        font-weight: 600;
        color: #e8eaf6;
    }

/* ============================
   OFFICE GRID (REUSES YOUR STYLE)
   ============================ */

.office-grid[b-85m294v6j1] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

/* Card */
.office-card[b-85m294v6j1] {
    background: linear-gradient(180deg, #1e1e2f, #161622);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1rem;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .office-card:hover[b-85m294v6j1] {
        transform: translateY(-3px);
    }

    .office-card.active[b-85m294v6j1] {
        border-color: #4caf50;
        box-shadow: 0 0 0 1px rgba(76,175,80,0.6), 0 10px 24px rgba(76,175,80,0.25);
    }

/* Header */
.office-header[b-85m294v6j1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .office-header h4[b-85m294v6j1] {
        margin: 0;
        font-size: 1.05rem;
        color: #ffffff;
    }

/* Badge */
.office-badge[b-85m294v6j1] {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

/* Body */
.office-body[b-85m294v6j1] {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.office-stat[b-85m294v6j1] {
    display: flex;
    justify-content: space-between;
}

    .office-stat .label[b-85m294v6j1] {
        font-size: 0.75rem;
        color: #9aa0b5;
        text-transform: uppercase;
    }

    .office-stat .value[b-85m294v6j1] {
        font-size: 0.85rem;
        font-weight: 600;
        color: #e8eaf6;
    }

/* Footer */
.office-footer[b-85m294v6j1] {
    display: flex;
    justify-content: flex-end;
}

/* Button */
.btn-rent[b-85m294v6j1] {
    background: linear-gradient(135deg, #3f51b5, #283593);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.modal-backdrop[b-85m294v6j1] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-card[b-85m294v6j1] {
    background: linear-gradient(180deg, #1e1e2f, #161622);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 24px;
    width: 420px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
}

    .modal-card h2[b-85m294v6j1] {
        margin-bottom: 12px;
    }

    .modal-card p[b-85m294v6j1] {
        margin-bottom: 16px;
    }
/* _content/WebDevEmpire.Web/Components/Pages/Prestige.razor.rz.scp.css */
/* ============================
   PRESTIGE PAGE
   ============================ */

.prestige-page[b-w9bwu83l7c] {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Section */
.prestige-section h3[b-w9bwu83l7c] {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Grid */
.prestige-grid[b-w9bwu83l7c] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.prestige-card[b-w9bwu83l7c] {
    background: linear-gradient(180deg, #232338, #1a1a2a);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255,255,255,0.08);
}

    .prestige-card .label[b-w9bwu83l7c] {
        font-size: 0.7rem;
        color: #9aa0b5;
        text-transform: uppercase;
    }

    .prestige-card .value[b-w9bwu83l7c] {
        font-size: 1.2rem;
        font-weight: 800;
    }

/* Preview */
.prestige-preview[b-w9bwu83l7c] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.preview-card[b-w9bwu83l7c] {
    background: linear-gradient(180deg, #1e1e30, #161626);
    border-radius: 14px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
}

    .preview-card.gain[b-w9bwu83l7c] {
        border-color: rgba(255,193,7,0.8);
    }

    .preview-card .label[b-w9bwu83l7c] {
        font-size: 0.7rem;
        color: #9aa0b5;
    }

    .preview-card .value[b-w9bwu83l7c] {
        font-size: 1.4rem;
        font-weight: 900;
        color: #ffc107;
    }

/* Action */
.prestige-action[b-w9bwu83l7c] {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
}

.btn-prestige[b-w9bwu83l7c] {
    background: linear-gradient(135deg, #e53935, #b71c1c);
    border: none;
    border-radius: 14px;
    padding: 0.9rem 1.6rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(229,57,53,0.45);
}

.prestige-warning[b-w9bwu83l7c] {
    font-size: 0.75rem;
    color: #ffab91;
}

/* Empty */
.empty-state.warning[b-w9bwu83l7c] {
    padding: 1.2rem;
    background: #2a1a1a;
    border-radius: 14px;
    color: #ffab91;
}
/* _content/WebDevEmpire.Web/Components/Pages/Save.razor.rz.scp.css */
/* ============================
   SAVES PAGE
   ============================ */

.save-page[b-u4rcb06rjr] {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Section */
.save-section h3[b-u4rcb06rjr] {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.save-section.danger h3[b-u4rcb06rjr] {
    color: #ff6f60;
}

/* Grid */
.save-grid[b-u4rcb06rjr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
}

/* Card */
.save-card[b-u4rcb06rjr] {
    background: linear-gradient(180deg, #1e1e30, #161626);
    border-radius: 14px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

    .save-card.danger[b-u4rcb06rjr] {
        border-color: rgba(229,57,53,0.8);
    }

    /* Text */
    .save-card h4[b-u4rcb06rjr] {
        margin: 0;
    }

    .save-card p[b-u4rcb06rjr] {
        font-size: 0.8rem;
        color: #9aa0b5;
    }

.warning-text[b-u4rcb06rjr] {
    color: #ffab91;
}

/* Buttons */
.btn-primary[b-u4rcb06rjr],
.btn-secondary[b-u4rcb06rjr],
.btn-danger[b-u4rcb06rjr] {
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary[b-u4rcb06rjr] {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: #fff;
}

.btn-secondary[b-u4rcb06rjr] {
    background: linear-gradient(135deg, #607d8b, #455a64);
    color: #fff;
}

.btn-danger[b-u4rcb06rjr] {
    background: linear-gradient(135deg, #e53935, #b71c1c);
    color: #fff;
}

/* Confirmation */
.confirm-reset[b-u4rcb06rjr] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.confirm-actions[b-u4rcb06rjr] {
    display: flex;
    gap: 0.6rem;
}

/* Message */
.system-message[b-u4rcb06rjr] {
    background: #1a1a2a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
}
/* _content/WebDevEmpire.Web/Components/Pages/Upgrades.razor.rz.scp.css */
/* ============================
   UPGRADES PAGE
   ============================ */

.upgrades-page[b-uifhim24ui] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Grid */
.upgrades-grid[b-uifhim24ui] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}

/* Card */
.upgrade-card[b-uifhim24ui] {
    background: linear-gradient(180deg, #1e1e30, #161626);
    border-radius: 14px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .upgrade-card:hover[b-uifhim24ui] {
        transform: translateY(-3px);
    }

    .upgrade-card.purchased[b-uifhim24ui] {
        border-color: #4caf50;
        box-shadow: 0 0 0 1px rgba(76,175,80,0.5);
    }

    .upgrade-card.locked[b-uifhim24ui] {
        opacity: 0.45;
    }

/* Header */
.upgrade-header[b-uifhim24ui] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .upgrade-header h4[b-uifhim24ui] {
        margin: 0;
    }

/* Badge */
.upgrade-badge[b-uifhim24ui] {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: #4caf50;
    color: #fff;
    font-weight: 700;
}

/* Description */
.upgrade-description[b-uifhim24ui] {
    margin: 0.6rem 0;
    font-size: 0.8rem;
    color: #9aa0b5;
}

/* Footer */
.upgrade-footer[b-uifhim24ui] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Cost */
.upgrade-cost[b-uifhim24ui] {
    font-weight: 700;
}

/* Button */
.btn-upgrade[b-uifhim24ui] {
    background: linear-gradient(135deg, #3f51b5, #283593);
    border: none;
    border-radius: 10px;
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

    .btn-upgrade:disabled[b-uifhim24ui] {
        opacity: 0.4;
        cursor: not-allowed;
    }

/* Purchased */
.upgrade-owned[b-uifhim24ui] {
    font-size: 0.7rem;
    font-weight: 700;
    color: #4caf50;
}
/* _content/WebDevEmpire.Web/Components/Shared/BankruptcyModal.razor.rz.scp.css */
.modal-backdrop[b-7t98tryjfy] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-card[b-7t98tryjfy] {
    background: linear-gradient(180deg, #1e1e2f, #161622);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 24px;
    width: 420px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
}

    .modal-card h2[b-7t98tryjfy] {
        margin-bottom: 12px;
    }

    .modal-card p[b-7t98tryjfy] {
        margin-bottom: 16px;
    }
/* _content/WebDevEmpire.Web/Components/Shared/DeveloperCard.razor.rz.scp.css */
/* ============================
   DEVELOPERS PAGE
   ============================ */

.developers-page[b-7z9vq1cbbq] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Header */
.page-header[b-7z9vq1cbbq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .page-header h2[b-7z9vq1cbbq] {
        margin: 0;
    }

.team-capacity[b-7z9vq1cbbq] {
    background: linear-gradient(180deg, #232338, #1a1a2a);
    padding: 0.6rem 1rem;
    border-radius: 10px;
}

    .team-capacity .label[b-7z9vq1cbbq] {
        font-size: 0.7rem;
        color: #9aa0b5;
    }

    .team-capacity .value[b-7z9vq1cbbq] {
        font-weight: 700;
    }

/* Overview */
.team-overview[b-7z9vq1cbbq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.overview-card[b-7z9vq1cbbq] {
    background: linear-gradient(180deg, #232338, #1a1a2a);
    border-radius: 12px;
    padding: 0.8rem 1rem;
}

    .overview-card .label[b-7z9vq1cbbq] {
        font-size: 0.7rem;
        color: #9aa0b5;
    }

    .overview-card .value[b-7z9vq1cbbq] {
        font-size: 1rem;
        font-weight: 700;
    }

/* Team */
.team-section h3[b-7z9vq1cbbq] {
    margin-bottom: 0.8rem;
}

.developers-grid[b-7z9vq1cbbq] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

/* Developer Card */
.dev-card[b-7z9vq1cbbq] {
    background: linear-gradient(180deg, #1e1e30, #161626);
    border-radius: 14px;
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 6px solid white;
}

.dev-card-frontend[b-7z9vq1cbbq] {
    border-top-color: #4fc3f7;
}

.dev-card-backend[b-7z9vq1cbbq] {
    border-top-color: #81c784;
}

.dev-card-fullstack[b-7z9vq1cbbq] {
    border-top-color: #68c5be;
}

.dev-header[b-7z9vq1cbbq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dev-level[b-7z9vq1cbbq] {
    font-size: 0.7rem;
    margin-left: 0.4rem;
    color: #9aa0b5;
}

.btn-fire[b-7z9vq1cbbq] {
    background: transparent;
    border: none;
    color: #e53935;
    font-weight: 700;
    cursor: pointer;
}

.dev-stat[b-7z9vq1cbbq] {
    display: flex;
    justify-content: space-between;
}

    .dev-stat .label[b-7z9vq1cbbq] {
        font-size: 0.7rem;
        color: #9aa0b5;
    }

    .dev-stat .value[b-7z9vq1cbbq] {
        font-weight: 600;
    }

/* Hiring */
.hiring-section[b-7z9vq1cbbq] {
    margin-top: 1rem;
}

.btn-hire[b-7z9vq1cbbq] {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border: none;
    border-radius: 10px;
    padding: 0.7rem 1.2rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

.warning-box[b-7z9vq1cbbq] {
    background: #332018;
    border: 1px solid rgba(255,193,7,0.6);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    color: #ffc107;
}

/* Empty */
.empty-state[b-7z9vq1cbbq] {
    padding: 1.2rem;
    background: #1a1a2a;
    border-radius: 12px;
    color: #9aa0b5;
}

/* ============================
   DEVELOPER IMAGE
   ============================ */

.dev-image[b-7z9vq1cbbq] {
    margin: 0.4rem 0;
    display: flex;
    justify-content: center;
}

    .dev-image img[b-7z9vq1cbbq] {
        width: 110px;
        height: 140px;
        object-fit: contain;
        border-radius: 10px;
        background: linear-gradient(180deg, #232338, #1a1a2a);
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 4px 10px rgba(0,0,0,0.4);
    }
/* _content/WebDevEmpire.Web/Components/Shared/HudItem.razor.rz.scp.css */
/* ============================
   TOPBAR HUD
   ============================ */

.topbar-hud[b-nho8nkmezt] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* HUD Item */
.hud-item[b-nho8nkmezt] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(180deg, #232338, #1a1a2a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.35rem 0.6rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: background 0.15s ease, border-color 0.15s ease;
}

    /* Icon */
    .hud-item .icon[b-nho8nkmezt] {
        font-size: 0.9rem;
    }

/* Text */
.hud-values[b-nho8nkmezt] {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

    .hud-values .primary[b-nho8nkmezt] {
        font-size: 0.75rem;
        font-weight: 700;
        color: #ffffff;
    }

    .hud-values .secondary[b-nho8nkmezt] {
        font-size: 0.6rem;
        color: #9aa0b5;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

/* STATES */

.hud-item.positive[b-nho8nkmezt] {
    border-color: rgba(76,175,80,0.6);
}

.hud-item.danger[b-nho8nkmezt] {
    border-color: rgba(229,57,53,0.8);
    background: linear-gradient(180deg, #3a1d1d, #2a1515);
}

.hud-item.warning[b-nho8nkmezt] {
    border-color: rgba(251,192,45,0.9);
}

.hud-item.prestige[b-nho8nkmezt] {
    border-color: rgba(255,87,34,0.8);
    background: linear-gradient(180deg, #332018, #26150f);
}

/* ============================
   DELTA ANIMATIONS
   ============================ */

@keyframes flash-green-b-nho8nkmezt {
    0% {
        box-shadow: 0 0 0 rgba(76,175,80,0);
    }

    50% {
        box-shadow: 0 0 12px rgba(76,175,80,0.8);
    }

    100% {
        box-shadow: 0 0 0 rgba(76,175,80,0);
    }
}

@keyframes flash-red-b-nho8nkmezt {
    0% {
        box-shadow: 0 0 0 rgba(229,57,53,0);
    }

    50% {
        box-shadow: 0 0 12px rgba(229,57,53,0.8);
    }

    100% {
        box-shadow: 0 0 0 rgba(229,57,53,0);
    }
}

.hud-item.delta-positive[b-nho8nkmezt] {
    animation: flash-green-b-nho8nkmezt 0.4s ease;
    border-color: rgba(76,175,80,0.8);
}

.hud-item.delta-negative[b-nho8nkmezt] {
    animation: flash-red-b-nho8nkmezt 0.4s ease;
    border-color: rgba(229,57,53,0.9);
}

/* ============================
   TOOLTIP ENHANCEMENT
   ============================ */

.hud-item[b-nho8nkmezt] {
    position: relative;
    cursor: default;
}

    .hud-item[b-nho8nkmezt]::after {
        content: attr(title);
        position: absolute;
        bottom: -2.2rem;
        left: 50%;
        transform: translateX(-50%);
        background: #1e1e30;
        color: #e8eaf6;
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
        white-space: nowrap;
        border-radius: 6px;
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 6px 14px rgba(0,0,0,0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.15s ease;
        z-index: 50;
    }

    .hud-item:hover[b-nho8nkmezt]::after {
        opacity: 1;
    }
/* _content/WebDevEmpire.Web/Components/Shared/RightSideBar.razor.rz.scp.css */
/* ============================
   RIGHT SIDEBAR
   ============================ */

.rightbar[b-p7lmqedder] {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

/* Section */
.rightbar-section h4[b-p7lmqedder] {
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #cfd3ff;
}

/* Chart */
.chart-card[b-p7lmqedder] {
    background: linear-gradient(180deg, #1e1e30, #161626);
    border-radius: 14px;
    padding: 0.6rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.chart-title[b-p7lmqedder] {
    display: block;
    font-size: 0.65rem;
    color: #9aa0b5;
    margin-bottom: 0.3rem;
}

/* Alerts */
.alert-card[b-p7lmqedder] {
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

    .alert-card small[b-p7lmqedder] {
        font-size: 0.65rem;
        font-weight: 500;
        opacity: 0.85;
    }

    .alert-card.danger[b-p7lmqedder] {
        background: #2a1a1a;
        color: #e57373;
    }

    .alert-card.warning[b-p7lmqedder] {
        background: #2a241a;
        color: #ffca28;
    }

    .alert-card.success[b-p7lmqedder] {
        background: #1a2a1a;
        color: #81c784;
    }

/* Stats */
.stat-row[b-p7lmqedder] {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

    .stat-row:last-child[b-p7lmqedder] {
        border-bottom: none;
    }
/* _content/WebDevEmpire.Web/Components/Shared/TopBar.razor.rz.scp.css */
/* ============================
   TOPBAR HUD
   ============================ */

.topbar-hud[b-qryln9lrth] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* HUD Item */
.hud-item[b-qryln9lrth] {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(180deg, #232338, #1a1a2a);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.35rem 0.6rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: background 0.15s ease, border-color 0.15s ease;
}

    /* Icon */
    .hud-item .icon[b-qryln9lrth] {
        font-size: 0.9rem;
    }

/* Text */
.hud-values[b-qryln9lrth] {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

    .hud-values .primary[b-qryln9lrth] {
        font-size: 0.75rem;
        font-weight: 700;
        color: #ffffff;
    }

    .hud-values .secondary[b-qryln9lrth] {
        font-size: 0.6rem;
        color: #9aa0b5;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

/* STATES */

.hud-item.positive[b-qryln9lrth] {
    border-color: rgba(76,175,80,0.6);
}

.hud-item.danger[b-qryln9lrth] {
    border-color: rgba(229,57,53,0.8);
    background: linear-gradient(180deg, #3a1d1d, #2a1515);
}

.hud-item.warning[b-qryln9lrth] {
    border-color: rgba(251,192,45,0.9);
}

.hud-item.prestige[b-qryln9lrth] {
    border-color: rgba(255,87,34,0.8);
    background: linear-gradient(180deg, #332018, #26150f);
}

/* ============================
   DELTA ANIMATIONS
   ============================ */

@keyframes flash-green-b-qryln9lrth {
    0% {
        box-shadow: 0 0 0 rgba(76,175,80,0);
    }

    50% {
        box-shadow: 0 0 12px rgba(76,175,80,0.8);
    }

    100% {
        box-shadow: 0 0 0 rgba(76,175,80,0);
    }
}

@keyframes flash-red-b-qryln9lrth {
    0% {
        box-shadow: 0 0 0 rgba(229,57,53,0);
    }

    50% {
        box-shadow: 0 0 12px rgba(229,57,53,0.8);
    }

    100% {
        box-shadow: 0 0 0 rgba(229,57,53,0);
    }
}

.hud-item.delta-positive[b-qryln9lrth] {
    animation: flash-green-b-qryln9lrth 0.4s ease;
    border-color: rgba(76,175,80,0.8);
}

.hud-item.delta-negative[b-qryln9lrth] {
    animation: flash-red-b-qryln9lrth 0.4s ease;
    border-color: rgba(229,57,53,0.9);
}

/* ============================
   TOOLTIP ENHANCEMENT
   ============================ */

.hud-item[b-qryln9lrth] {
    position: relative;
    cursor: default;
}

    .hud-item[b-qryln9lrth]::after {
        content: attr(title);
        position: absolute;
        bottom: -2.2rem;
        left: 50%;
        transform: translateX(-50%);
        background: #1e1e30;
        color: #e8eaf6;
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
        white-space: nowrap;
        border-radius: 6px;
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 6px 14px rgba(0,0,0,0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.15s ease;
        z-index: 50;
    }

    .hud-item:hover[b-qryln9lrth]::after {
        opacity: 1;
    }
