/**
 * File Location: /healthscope/assets/css/healthscope.css
 * Institutional Governance: Crimson Rose & Emerald Dark Glassmorphic Theme
 * Authority: Victor Mallick | CreativeFolk Foundation
 */

:root {
    --hs-crimson: #FF2A5F;
    --hs-emerald: #00E676;
    --hs-gold: #F3A92A;
    --hs-bg: #080205;
    --hs-card-bg: rgba(22, 10, 16, 0.75);
    --hs-border-glow: rgba(255, 42, 95, 0.25);
}

body {
    background-color: var(--hs-bg) !important;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    padding-top: 70px;
}

.rose-crimson { color: var(--hs-crimson) !important; }
.emerald-green { color: var(--hs-emerald) !important; }
.gold-text { color: var(--hs-gold) !important; }
.bg-crimson { background-color: var(--hs-crimson) !important; }
.bg-emerald { background-color: var(--hs-emerald) !important; }

/* NAVBAR */
.hs-navbar {
    background: rgba(8, 2, 5, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 42, 95, 0.15);
    height: 65px;
    display: flex;
    align-items: center;
}
.brand-text {
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #fff;
}

/* GAMIFIED SIMULATION CARDS */
.health-card {
    background: var(--hs-card-bg);
    border: 1px solid rgba(255, 42, 95, 0.15);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
}
.health-card:hover, .health-card.active {
    border-color: var(--hs-crimson) !important;
    background: rgba(255, 42, 95, 0.08) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 42, 95, 0.2);
}

/* SPECIAL ACTION CARDS */
.health-card.emerald-hover:hover, .health-card.emerald-hover.active {
    border-color: var(--hs-emerald) !important;
    background: rgba(0, 230, 118, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.25);
}

/* BUTTONS */
.btn-health {
    background: linear-gradient(135deg, #FF2A5F 0%, #FF6500 100%);
    color: #fff;
    font-weight: 900;
    border: none;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-health:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 42, 95, 0.4);
    color: #fff;
}

/* UTILITY CLASSES */
.xx-small { font-size: 0.72rem; }
.tracking-widest { letter-spacing: 2px; }
.tracking-wider { letter-spacing: 1px; }