
        /* ═══════════════════════════════════════════════
           Heaven Studio Dashboard Design System
           ═══════════════════════════════════════════════ */
        
        
        
        
        
        
        
        /* ═══════════════════════════════════════════════
           Layout Structure
           ═══════════════════════════════════════════════ */
        
.dashboard-page .dashboard-container {
            display: flex;
            min-height: 100vh;
        }
        
        /* ═══════════════════════════════════════════════
           Sidebar
           ═══════════════════════════════════════════════ */
        
.dashboard-page .sidebar {
            width: 280px;
            background: var(--bg-elevated);
            border-left: 1px solid rgba(244, 208, 63, 0.15);
            display: flex;
            flex-direction: column;
            position: fixed;
            right: 0;
            top: 0;
            height: 100vh;
            overflow-y: auto;
            z-index: 100;
        }
        
        /* Microphone grill pattern */
.dashboard-page .sidebar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: repeating-linear-gradient(
                0deg,
                transparent 0px,
                transparent 3px,
                rgba(244, 208, 63, 0.03) 3px,
                rgba(244, 208, 63, 0.03) 6px
            );
            pointer-events: none;
        }
        
.dashboard-page .sidebar-header {
            padding: 32px 24px;
            border-bottom: 1px solid rgba(244, 208, 63, 0.15);
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
.dashboard-page .sidebar-logo {
            width: 70px;
            height: 70px;
            margin: 0 auto 16px;
            filter: drop-shadow(0 0 16px rgba(244, 208, 63, 0.4));
        }
        
.dashboard-page .sidebar-title {
            font-size: 20px;
            font-weight: 700;
            background: var(--gradient-golden);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 4px;
        }
        
.dashboard-page .sidebar-subtitle {
            font-size: 12px;
            color: var(--text-tertiary);
        }
        
.dashboard-page .sidebar-nav {
            flex: 1;
            padding: 24px 0;
        }
        
.dashboard-page .nav-section {
            margin-bottom: 32px;
        }
        
.dashboard-page .section-title {
            padding: 0 24px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-tertiary);
            margin-bottom: 12px;
        }
        
.dashboard-page .nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.25s ease;
            position: relative;
            margin: 4px 16px;
            border-radius: 12px;
        }
        
        /* Golden accent bar */
.dashboard-page .nav-item::before {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background: var(--gradient-golden);
            border-radius: 2px;
            transition: height 0.25s ease;
        }
        
        .nav-item:hover::before,
.dashboard-page .nav-item.active::before {
            height: 60%;
        }
        
        .nav-item:hover,
.dashboard-page .nav-item.active {
            background: rgba(244, 208, 63, 0.1);
            color: var(--heaven-gold);
        }
        
.dashboard-page .nav-icon {
            width: 20px;
            height: 20px;
        }
        
.dashboard-page .sidebar-footer {
            padding: 24px;
            border-top: 1px solid rgba(244, 208, 63, 0.15);
        }
        
.dashboard-page .user-card {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: rgba(244, 208, 63, 0.05);
            border: 1px solid rgba(244, 208, 63, 0.15);
            border-radius: 12px;
        }
        
.dashboard-page .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient-golden);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--heaven-black);
            font-weight: 700;
            font-size: 14px;
            box-shadow: var(--shadow-gold-sm);
        }
        
.dashboard-page .user-info {
            flex: 1;
        }
        
.dashboard-page .user-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            display: block;
            margin-bottom: 2px;
        }
        
.dashboard-page .user-role {
            font-size: 12px;
            color: var(--text-tertiary);
        }
        
        /* ═══════════════════════════════════════════════
           Main Content
           ═══════════════════════════════════════════════ */
        
.dashboard-page .main-content {
            flex: 1;
            margin-right: 280px;
            padding: 32px;
            overflow-y: auto;
        }
        
        /* Top Bar */
.dashboard-page .top-bar {
            background: rgba(26, 26, 26, 0.95);
            border: 1px solid rgba(244, 208, 63, 0.15);
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-lg);
        }
        
        /* Golden glow effect */
.dashboard-page .top-bar::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 24px;
            right: 24px;
            height: 1px;
            background: var(--gradient-golden);
            opacity: 0.5;
        }
        
.dashboard-page .time-display {
            display: flex;
            flex-direction: column;
        }
        
.dashboard-page .timecode {
            font-family: 'JetBrains Mono', monospace;
            font-size: 24px;
            color: var(--heaven-gold);
            text-shadow: 0 0 16px rgba(244, 208, 63, 0.4);
            letter-spacing: 2px;
        }
        
.dashboard-page .date-display {
            font-size: 14px;
            color: var(--text-secondary);
            margin-top: 4px;
        }
        
.dashboard-page .system-status {
            display: flex;
            gap: 24px;
        }
        
.dashboard-page .status-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-secondary);
        }
        
.dashboard-page .status-led {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--sound-green);
            box-shadow: 0 0 8px rgba(82, 196, 26, 0.6);
            animation: pulse 2s ease-in-out infinite;
        }
        
.dashboard-page .status-led.warning {
            background: var(--sound-orange);
            box-shadow: 0 0 8px rgba(243, 156, 18, 0.6);
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        /* Welcome Section */
.dashboard-page .welcome-section {
            margin-bottom: 32px;
        }
        
.dashboard-page .welcome-title {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        
.dashboard-page .welcome-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
        }
        
        /* Stats Grid */
.dashboard-page .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }
        
.dashboard-page .stat-card {
            background: var(--bg-elevated);
            border: 1px solid rgba(244, 208, 63, 0.2);
            border-radius: 16px;
            padding: 24px;
            position: relative;
            overflow: hidden;
            transition: all 0.25s ease;
        }
        
        /* Golden top border */
.dashboard-page .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-golden);
        }
        
        /* Cloud decoration */
.dashboard-page .stat-card::after {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 60px;
            background: radial-gradient(
                ellipse at center,
                rgba(245, 245, 245, 0.05) 0%,
                transparent 70%
            );
            border-radius: 50%;
            pointer-events: none;
        }
        
.dashboard-page .stat-card:hover {
            transform: translateY(-4px);
            border-color: var(--heaven-gold);
            box-shadow: var(--shadow-gold-md);
        }
        
.dashboard-page .stat-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
        }
        
.dashboard-page .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--gradient-golden);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-gold-sm);
        }
        
.dashboard-page .stat-icon svg {
            width: 24px;
            height: 24px;
            color: var(--heaven-black);
        }
        
.dashboard-page .stat-label {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 12px;
        }
        
.dashboard-page .stat-value {
            display: flex;
            align-items: baseline;
            gap: 8px;
            margin-bottom: 12px;
        }
        
.dashboard-page .stat-number {
            font-size: 40px;
            font-weight: 700;
            font-family: 'JetBrains Mono', monospace;
            background: var(--gradient-golden);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
.dashboard-page .stat-unit {
            color: var(--text-tertiary);
            font-size: 14px;
        }
        
.dashboard-page .stat-trend {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 13px;
        }
        
.dashboard-page .stat-trend.positive {
            color: var(--sound-green);
        }
        
.dashboard-page .stat-trend.negative {
            color: var(--sound-red);
        }
        
        /* VU Meter Card (special) */
.dashboard-page .vu-meter-card {
            background: var(--bg-elevated);
            border: 1px solid rgba(244, 208, 63, 0.2);
            border-radius: 16px;
            padding: 24px;
            position: relative;
            overflow: hidden;
        }
        
.dashboard-page .vu-meter-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, 
                #52C41A 0%, 
                #FAAD14 70%, 
                #F5222D 100%
            );
        }
        
.dashboard-page .vu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }
        
.dashboard-page .vu-label {
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
.dashboard-page .vu-peak {
            font-family: 'JetBrains Mono', monospace;
            font-size: 10px;
            color: var(--sound-red);
            background: rgba(245, 34, 45, 0.1);
            padding: 2px 8px;
            border-radius: 4px;
        }
        
.dashboard-page .vu-meter {
            margin: 16px 0;
            height: 32px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 4px;
            padding: 4px;
        }
        
.dashboard-page .vu-segments {
            display: flex;
            gap: 3px;
            height: 100%;
        }
        
.dashboard-page .segment {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
.dashboard-page .segment.active.green {
            background: linear-gradient(180deg, #52C41A 0%, #389E0D 100%);
            box-shadow: 0 0 8px rgba(82, 196, 26, 0.6);
        }
        
.dashboard-page .segment.active.yellow {
            background: linear-gradient(180deg, #FAAD14 0%, #D48806 100%);
            box-shadow: 0 0 8px rgba(250, 173, 20, 0.6);
        }
        
.dashboard-page .segment.active.red {
            background: linear-gradient(180deg, #F5222D 0%, #CF1322 100%);
            box-shadow: 0 0 8px rgba(245, 34, 45, 0.6);
        }
        
.dashboard-page .vu-value {
            text-align: center;
        }
        
.dashboard-page .vu-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 36px;
            font-weight: 700;
            background: var(--gradient-golden);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        /* Quick Actions */
.dashboard-page .quick-actions {
            margin-bottom: 32px;
        }
        
.dashboard-page .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
.dashboard-page .section-title-main {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
        }
        
.dashboard-page .actions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
        }
        
.dashboard-page .action-button {
            background: var(--gradient-golden);
            color: var(--heaven-black);
            border: none;
            border-radius: 12px;
            padding: 16px 24px;
            font-family: inherit;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: var(--shadow-gold-sm);
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }
        
.dashboard-page .action-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transition: left 0.5s ease;
        }
        
.dashboard-page .action-button:hover::before {
            left: 100%;
        }
        
.dashboard-page .action-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-gold-md);
        }
        
.dashboard-page .action-button svg {
            width: 20px;
            height: 20px;
        }
        
        /* Recent Activity */
.dashboard-page .recent-activity {
            background: var(--bg-elevated);
            border: 1px solid rgba(244, 208, 63, 0.15);
            border-radius: 16px;
            padding: 24px;
        }
        
.dashboard-page .activity-list {
            list-style: none;
        }
        
.dashboard-page .activity-item {
            padding: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            gap: 16px;
            transition: background 0.25s ease;
        }
        
.dashboard-page .activity-item:last-child {
            border-bottom: none;
        }
        
.dashboard-page .activity-item:hover {
            background: rgba(244, 208, 63, 0.05);
        }
        
.dashboard-page .activity-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
.dashboard-page .activity-icon.project {
            background: rgba(74, 144, 226, 0.1);
            color: var(--sound-blue);
        }
        
.dashboard-page .activity-icon.quote {
            background: rgba(243, 156, 18, 0.1);
            color: var(--sound-orange);
        }
        
.dashboard-page .activity-icon.customer {
            background: rgba(82, 196, 26, 0.1);
            color: var(--sound-green);
        }
        
.dashboard-page .activity-content {
            flex: 1;
        }
        
.dashboard-page .activity-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        
.dashboard-page .activity-description {
            font-size: 13px;
            color: var(--text-secondary);
        }
        
.dashboard-page .activity-time {
            font-size: 12px;
            color: var(--text-tertiary);
            white-space: nowrap;
        }

        /* ─── Rich Activity Items ─── */
.dashboard-page .activity-item.activity-rich {
            align-items: flex-start;
            cursor: pointer;
            border-radius: 10px;
            padding: 14px 16px;
        }

.dashboard-page .act-headline {
            font-size: 12px;
            color: var(--text-tertiary);
            margin-bottom: 4px;
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            align-items: center;
        }

.dashboard-page .act-verb {
            color: var(--text-tertiary);
        }

.dashboard-page .act-actor {
            color: var(--heaven-gold);
            font-weight: 700;
            font-size: 12px;
        }

.dashboard-page .act-customer-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

.dashboard-page .act-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 8px;
        }

.dashboard-page .act-badge {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            font-size: 11px;
            font-weight: 500;
            padding: 3px 8px;
            border-radius: 20px;
            white-space: nowrap;
        }

.dashboard-page .act-contact {
            background: rgba(74, 144, 226, 0.12);
            color: #6baed6;
            border: 1px solid rgba(74, 144, 226, 0.25);
        }

.dashboard-page .act-phone {
            background: rgba(82, 196, 26, 0.1);
            color: var(--sound-green);
            border: 1px solid rgba(82, 196, 26, 0.25);
        }

.dashboard-page .act-email {
            background: rgba(244, 208, 63, 0.1);
            color: var(--heaven-gold);
            border: 1px solid rgba(244, 208, 63, 0.2);
        }

.dashboard-page .act-missing {
            background: rgba(255, 255, 255, 0.04);
            color: var(--text-tertiary);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

.dashboard-page .act-timestamp {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            color: var(--text-tertiary);
            font-family: 'JetBrains Mono', monospace;
            letter-spacing: 0.3px;
        }

.dashboard-page .act-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 6px;
            padding-top: 6px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            gap: 8px;
        }

.dashboard-page .act-reltime {
            font-size: 11px;
            color: var(--text-tertiary);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 2px 8px;
            border-radius: 20px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
.dashboard-page .sidebar {
                transform: translateX(100%);
                transition: transform 0.3s ease;
            }
            
.dashboard-page .sidebar.open {
                transform: translateX(0);
            }
            
.dashboard-page .main-content {
                margin-right: 0;
            }
        }
    