        /* Minted Reports - Updated Jan 18, 2026 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #00D9A5;
            --primary-dark: #00B889;
            --accent: #FFD700;
            --bg-dark: #0A1628;
            --bg-card: #1A2B45;
            --text-primary: #FFFFFF;
            --text-secondary: #94A3B8;
            --border: #2D4A6F;
            --success: #10B981;
            --warning: #F59E0B;
            --danger: #EF4444;
        }

        /* ==================== LOGIN SCREEN ==================== */
        .login-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-dark);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        .login-screen.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .login-container {
            width: 100%;
            max-width: 420px;
            padding: 20px;
        }

        .login-card {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 48px 40px;
            border: 1px solid var(--border);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .login-logo {
            text-align: center;
            margin-bottom: 40px;
            background: var(--bg-dark, #0A1628);
            border-radius: 16px;
            padding: 24px;
        }

        .login-logo-text {
            font-size: 32px;
            font-weight: 900;
            letter-spacing: 4px;
            color: var(--text-primary);
        }

        .login-logo-subtitle {
            font-size: 12px;
            color: #00B889;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 8px;
            font-weight: 600;
        }

        .login-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 8px;
        }

        .login-subtitle {
            font-size: 14px;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 32px;
        }

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

        .login-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .login-input {
            width: 100%;
            padding: 16px 20px;
            background: var(--bg-dark);
            border: 2px solid var(--border);
            border-radius: 12px;
            color: var(--text-primary);
            font-family: inherit;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .login-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 217, 165, 0.15);
        }

        .login-input.error {
            border-color: var(--danger);
            animation: shake 0.5s ease;
        }

        .login-input::placeholder {
            color: var(--text-secondary);
            opacity: 0.6;
        }

        .login-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border: none;
            border-radius: 12px;
            color: var(--bg-dark);
            font-family: inherit;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .login-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 217, 165, 0.4);
        }

        .login-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .login-btn .spinner {
            width: 20px;
            height: 20px;
            border: 2px solid var(--bg-dark);
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        .login-error {
            background: rgba(239, 68, 68, 0.15);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #f87171;
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 13px;
            margin-bottom: 20px;
            display: none;
        }

        .login-error.show {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .login-info {
            background: rgba(0, 217, 165, 0.1);
            border: 1px solid rgba(0, 217, 165, 0.2);
            color: var(--primary);
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 13px;
            margin-bottom: 20px;
            display: none;
        }

        .login-info.show {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* OTP Input */
        .otp-input-container {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 24px 0;
        }

        .otp-digit {
            width: 52px;
            height: 64px;
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            background: var(--bg-dark);
            border: 2px solid var(--border);
            border-radius: 12px;
            color: var(--text-primary);
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .otp-digit:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 217, 165, 0.15);
        }

        .otp-digit.filled {
            border-color: var(--primary);
            background: rgba(0, 217, 165, 0.1);
        }

        .otp-digit.error {
            border-color: var(--danger);
        }

        /* PIN Input (Admin) */
        .pin-input-container {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 24px 0;
        }

        .pin-digit {
            width: 52px;
            height: 64px;
            text-align: center;
            font-size: 28px;
            font-weight: 700;
            background: var(--bg-dark);
            border: 2px solid var(--border);
            border-radius: 12px;
            color: var(--text-primary);
            font-family: inherit;
            transition: all 0.3s ease;
            -webkit-text-security: disc;
        }

        .pin-digit:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 217, 165, 0.15);
        }

        .pin-digit.filled {
            border-color: var(--primary);
            background: rgba(0, 217, 165, 0.1);
        }

        .pin-digit.error {
            border-color: var(--danger);
        }

        .login-step {
            display: none;
        }

        .login-step.active {
            display: block;
        }

        .login-back-btn {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-family: inherit;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }

        .login-back-btn:hover {
            color: var(--text-primary);
        }

        .otp-resend {
            text-align: center;
            margin-top: 20px;
        }

        .otp-resend-btn {
            background: none;
            border: none;
            color: var(--primary);
            font-family: inherit;
            font-size: 14px;
            cursor: pointer;
            text-decoration: underline;
        }

        .otp-resend-btn:disabled {
            color: var(--text-secondary);
            cursor: not-allowed;
            text-decoration: none;
        }

        .otp-timer {
            color: var(--text-secondary);
            font-size: 13px;
        }

        /* Vertical Side Bar - Left Top */
        /* Notification badge - used in header controls */
        .notification-badge {
            position: absolute;
            top: 2px;
            right: 2px;
            background: #EF4444;
            color: white;
            font-size: 10px;
            font-weight: 700;
            min-width: 16px;
            height: 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
            animation: pulse-badge 2s infinite;
        }

        @keyframes pulse-badge {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Notifications Panel */
        .notifications-panel {
            position: fixed;
            top: 60px;
            right: 20px;
            width: 320px;
            max-height: 400px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            z-index: 2500;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-10px);
            pointer-events: none;
            transition: all 0.2s ease;
        }

        .notifications-panel.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .notifications-panel-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            border-bottom: 1px solid var(--border);
        }

        .notifications-panel-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .notifications-panel-close {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 18px;
            cursor: pointer;
            padding: 2px 6px;
            line-height: 1;
        }

        .notifications-panel-close:hover {
            color: var(--text-primary);
        }

        .notifications-panel-body {
            max-height: 320px;
            overflow-y: auto;
        }

        .notifications-panel-body::-webkit-scrollbar {
            width: 4px;
        }

        .notifications-panel-body::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 2px;
        }

        .notification-item {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 12px;
            padding: 10px 14px;
            border-bottom: 1px solid var(--border);
            cursor: pointer;
            transition: background 0.15s ease;
            opacity: 0.6;
        }

        .notification-item:last-child {
            border-bottom: none;
        }

        .notification-item:hover {
            background: rgba(0, 217, 165, 0.05);
        }

        .notification-item.unread {
            opacity: 1;
            background: rgba(0, 217, 165, 0.03);
        }

        .notification-item-content {
            flex: 1;
            min-width: 0;
        }

        .notification-item-header {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 2px;
        }

        .notification-item.unread .notification-item-header::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .notification-item-title {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .notification-item-message {
            font-size: 12px;
            color: var(--text-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .notification-item-time {
            font-size: 11px;
            color: var(--text-secondary);
            opacity: 0.7;
            white-space: nowrap;
            flex-shrink: 0;
            padding-top: 2px;
        }

        .notifications-empty {
            padding: 30px 16px;
            text-align: center;
            color: var(--text-secondary);
            font-size: 13px;
        }

        .notifications-mark-read {
            padding: 10px 16px;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .notifications-mark-read-btn {
            background: none;
            border: none;
            color: var(--primary);
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
        }

        .notifications-mark-read-btn:hover {
            text-decoration: underline;
        }

        /* Mobile responsive */
        @media (max-width: 480px) {
            .notifications-panel {
                right: 10px;
                left: 10px;
                width: auto;
                top: 55px;
            }
        }

        /* Global Search Modal */
        .search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 22, 40, 0.9);
            backdrop-filter: blur(8px);
            z-index: 2000;
            justify-content: center;
            align-items: flex-start;
            padding-top: 10vh;
        }

        .search-modal.active {
            display: flex;
            animation: fadeIn 0.2s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .search-container {
            width: 90%;
            max-width: 650px;
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid var(--border);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { transform: translateY(-20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .search-header {
            display: flex;
            align-items: center;
            padding: 16px 20px;
            border-bottom: 1px solid var(--border);
            gap: 12px;
        }

        .search-icon {
            font-size: 20px;
            color: var(--text-secondary);
        }

        .search-input {
            flex: 1;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            outline: none;
        }

        .search-input::placeholder {
            color: var(--text-secondary);
        }

        .search-shortcut {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
        }

        .search-close {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 20px;
            cursor: pointer;
            padding: 4px;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .search-close:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.1);
        }

        .search-results {
            max-height: 60vh;
            overflow-y: auto;
        }

        .search-results::-webkit-scrollbar {
            width: 6px;
        }

        .search-results::-webkit-scrollbar-track {
            background: transparent;
        }

        .search-results::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 3px;
        }

        .search-category {
            padding: 12px 20px 8px;
            font-size: 11px;
            font-weight: 700;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .search-result-item {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            cursor: pointer;
            transition: all 0.2s ease;
            gap: 12px;
            border-left: 3px solid transparent;
        }

        .search-result-item:hover,
        .search-result-item.selected {
            background: rgba(0, 217, 165, 0.1);
            border-left-color: var(--primary);
        }

        .search-result-icon {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .search-result-content {
            flex: 1;
            min-width: 0;
        }

        .search-result-title {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .search-result-title mark {
            background: rgba(255, 215, 0, 0.3);
            color: var(--accent);
            padding: 0 2px;
            border-radius: 2px;
        }

        .search-result-meta {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 2px;
        }

        .search-result-tab {
            background: rgba(102, 126, 234, 0.2);
            color: #667eea;
            padding: 3px 8px;
            border-radius: 6px;
            font-size: 10px;
            font-weight: 600;
            flex-shrink: 0;
        }

        .search-empty {
            padding: 40px 20px;
            text-align: center;
            color: var(--text-secondary);
        }

        .search-empty-icon {
            font-size: 40px;
            margin-bottom: 12px;
            opacity: 0.5;
        }

        .search-footer {
            padding: 12px 20px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 11px;
            color: var(--text-secondary);
        }

        .search-footer-keys {
            display: flex;
            gap: 12px;
        }

        .search-footer-key {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .search-footer-key kbd {
            background: rgba(255, 255, 255, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 10px;
        }

        /* Hide main content until logged in */
        .app-content {
            display: none;
        }

        .app-content.visible {
            display: block;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-dark);
            min-height: 100vh;
            color: var(--text-primary);
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Navigation Header */
        .nav-header {
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
            border-radius: 20px;
            padding: 16px 24px;
            margin-bottom: 30px;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .header-top-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        /* Tabs - align to right */
        .nav-header > .tab-nav {
            align-self: flex-end;
        }

        .logo-section {
            display: flex;
            align-items: center;
        }

        .logo-with-subtitle {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
        }

        .logo-with-subtitle svg {
            display: block;
        }

        .brand-subtitle {
            font-size: 12px;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            padding-left: 2px;
        }

        /* Header Controls */
        .header-controls {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-dark);
            padding: 6px 10px;
            border-radius: 12px;
            border: 1px solid var(--border);
        }

        .header-avatar {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: var(--bg-dark);
        }

        .header-update {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0 8px;
            border-left: 1px solid var(--border);
            border-right: 1px solid var(--border);
            margin: 0 4px;
        }

        .header-dot {
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .header-time {
            color: var(--primary);
            font-weight: 600;
            font-size: 11px;
        }

        .header-btn {
            background: none;
            border: none;
            color: var(--text-secondary);
            font-size: 14px;
            cursor: pointer;
            padding: 6px;
            border-radius: 8px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
        }

        .header-btn:hover {
            background: rgba(0, 217, 165, 0.15);
            color: var(--primary);
        }

        .header-logout:hover {
            background: rgba(239, 68, 68, 0.15);
            color: #ef4444;
        }

        .header-notifications {
            position: relative;
        }

        .header-badge {
            position: absolute;
            top: 2px;
            right: 2px;
            font-size: 9px;
            min-width: 14px;
            height: 14px;
            padding: 0 3px;
        }

        .header-lang {
            display: flex;
            gap: 2px;
            background: rgba(0, 0, 0, 0.2);
            padding: 3px;
            border-radius: 8px;
        }

        .header-lang .lang-btn {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-size: 10px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .header-lang .lang-btn:hover {
            color: var(--text-primary);
        }

        .header-lang .lang-btn.active {
            background: var(--primary);
            color: var(--bg-dark);
        }

        /* Currency Toggle */
        .header-currency {
            display: flex;
            gap: 2px;
            background: rgba(0, 0, 0, 0.2);
            padding: 3px;
            border-radius: 8px;
        }

        .header-currency .currency-btn {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .header-currency .currency-btn:hover {
            color: var(--text-primary);
        }

        .header-currency .currency-btn.active {
            background: var(--accent);
            color: var(--bg-dark);
        }

        /* Tab Navigation */
        .tab-nav {
            display: flex;
            gap: 6px;
            background: var(--bg-dark);
            padding: 5px;
            border-radius: 14px;
            border: 1px solid var(--border);
            align-items: center;
        }

        .tab-btn {
            padding: 10px 18px;
            border: none;
            background: transparent;
            color: var(--text-secondary);
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .tab-btn:hover {
            color: var(--text-primary);
            background: rgba(0, 217, 165, 0.1);
        }

        .tab-btn.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--bg-dark);
            font-weight: 700;
        }

        .tab-btn .icon {
            font-size: 15px;
        }

        /* Tab Content */
        .tab-content {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .tab-content.active {
            display: block;
        }

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

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
            border-radius: 24px;
            padding: 50px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

        .hero::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 217, 165, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 42px;
            font-weight: 900;
            margin-bottom: 12px;
            background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero .subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 217, 165, 0.15);
            border: 1px solid var(--primary);
            padding: 10px 20px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
        }

        /* Metrics Grid */
        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .metric-card {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            /* GPU acceleration for smooth scrolling */
            transform: translateZ(0);
            -webkit-transform: translateZ(0);
            backface-visibility: hidden;
        }

        .metric-card:hover {
            transform: translateZ(0) translateY(-4px);
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0, 217, 165, 0.1);
        }

        .metric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--card-color, var(--primary)) 0%, transparent 100%);
        }

        .metric-card.gold::before { --card-color: var(--accent); }
        .metric-card.success::before { --card-color: var(--success); }
        .metric-card.warning::before { --card-color: var(--warning); }

        .metric-label {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 10px;
        }

        .metric-value {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .metric-value.primary { color: var(--primary); }
        .metric-value.gold { color: var(--accent); }

        .metric-change {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
        }

        .metric-change.positive {
            background: rgba(16, 185, 129, 0.15);
            color: var(--success);
        }

        .metric-detail {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 6px;
        }

        /* Section */
        .section {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 35px;
            margin-bottom: 25px;
            border: 1px solid var(--border);
            /* GPU acceleration for smooth scrolling */
            transform: translateZ(0);
            -webkit-transform: translateZ(0);
            backface-visibility: hidden;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 25px;
            padding-bottom: 18px;
            border-bottom: 1px solid var(--border);
        }

        .section-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .section-subtitle {
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 3px;
        }

        /* Two/Three/Four Column Layouts */
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .three-col {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .four-col {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        /* Tables */
        table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }

        th {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--bg-dark);
            padding: 14px 18px;
            text-align: left;
            font-weight: 700;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        th:first-child { border-radius: 10px 0 0 0; }
        th:last-child { border-radius: 0 10px 0 0; }

        td {
            padding: 14px 18px;
            border-bottom: 1px solid var(--border);
            font-size: 13px;
            color: var(--text-secondary);
        }

        td strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        tr:last-child td { border-bottom: none; }
        tr:hover td { background: rgba(0, 217, 165, 0.05); }

        /* Highlight Cards */
        .highlight-card {
            background: linear-gradient(135deg, rgba(0, 217, 165, 0.1) 0%, rgba(0, 184, 137, 0.05) 100%);
            border: 1px solid rgba(0, 217, 165, 0.3);
            border-radius: 14px;
            padding: 22px;
        }

        .highlight-card.gold {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
            border-color: rgba(255, 215, 0, 0.3);
        }

        .highlight-card.purple {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.1) 100%);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .highlight-card h3 {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
        }

        .highlight-card.gold h3 { color: var(--accent); }
        .highlight-card.purple h3 { color: #667eea; }

        .highlight-value {
            font-size: 38px;
            font-weight: 900;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .highlight-detail {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* Unit Cards */
        .unit-card {
            background: var(--bg-dark);
            border-radius: 12px;
            padding: 22px;
            text-align: center;
            border: 1px solid var(--border);
        }

        .unit-card .label {
            font-size: 10px;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }

        .unit-card .value {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
        }

        .unit-card .detail {
            font-size: 11px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* Chart Container */
        .chart-container {
            position: relative;
            height: 320px;
            margin: 20px 0;
        }

        .chart-container.small {
            height: 260px;
        }

        /* Progress Bars */
        .progress-item {
            margin-bottom: 18px;
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
        }

        .progress-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .progress-value {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
        }

        .progress-bar {
            height: 8px;
            background: var(--bg-dark);
            border-radius: 4px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 4px;
            transition: width 1s ease;
        }

        /* GMV Breakdown */
        .gmv-breakdown {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 20px;
        }

        .gmv-item {
            background: var(--bg-dark);
            border-radius: 12px;
            padding: 18px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .gmv-item:hover {
            border-color: var(--primary);
        }

        .gmv-item .icon {
            font-size: 26px;
            margin-bottom: 6px;
        }

        .gmv-item .amount {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .gmv-item .label {
            font-size: 11px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .gmv-item .count {
            font-size: 10px;
            color: var(--text-secondary);
            margin-top: 6px;
        }

        /* Metal Cards */
        .metal-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }

        .metal-card {
            background: var(--bg-dark);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .metal-card:hover {
            border-color: var(--accent);
            transform: translateY(-3px);
        }

        .metal-card .metal-name {
            font-size: 12px;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .metal-card .metal-amount {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .metal-card .metal-detail {
            font-size: 11px;
            color: var(--text-secondary);
        }

        /* Weekly Report Specific Styles */
        .weekly-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .weekly-stat-card {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .weekly-stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .weekly-stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
        }

        .weekly-stat-card:nth-child(1)::before { background: linear-gradient(90deg, #667eea, #764ba2); }
        .weekly-stat-card:nth-child(2)::before { background: linear-gradient(90deg, #f093fb, #f5576c); }
        .weekly-stat-card:nth-child(3)::before { background: linear-gradient(90deg, #4facfe, #00f2fe); }
        .weekly-stat-card:nth-child(4)::before { background: linear-gradient(90deg, #43e97b, #38f9d7); }

        /* Badge */
        .badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 600;
            margin-left: 8px;
        }

        .badge-compare {
            background-color: rgba(0, 102, 204, 0.15);
            color: #4facfe;
            border: 1px dashed #4facfe;
        }

        .badge-new {
            background-color: rgba(16, 185, 129, 0.15);
            color: var(--success);
            border: 1px solid var(--success);
        }

        /* Footer */
        .footer {
            text-align: center;
            padding: 40px;
            color: var(--text-secondary);
            font-size: 12px;
        }

        .footer-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-card);
            padding: 10px 20px;
            border-radius: 100px;
            border: 1px solid var(--border);
            margin-bottom: 14px;
        }

        /* Report Selector */
        .report-selector {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .report-select {
            background: var(--bg-dark);
            border: 1px solid var(--border);
            color: var(--text-primary);
            padding: 12px 20px;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .report-select:hover {
            border-color: var(--primary);
        }

        .report-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 217, 165, 0.2);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .metrics-grid, .weekly-stats-grid, .four-col { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .metrics-grid, .weekly-stats-grid, .two-col, .three-col, .four-col, .metal-grid {
                grid-template-columns: 1fr;
            }
            .nav-header { padding: 12px 16px; gap: 12px; }
            .header-top-row { flex-wrap: wrap; gap: 10px; }
            .header-controls {
                order: -1;
                width: 100%;
                justify-content: center;
                padding: 8px 12px;
            }
            .logo-section { width: 100%; justify-content: center; }
            .tab-nav { flex-wrap: wrap; justify-content: center; width: 100%; }
            .tab-btn { padding: 8px 12px; font-size: 12px; }
            .hero { padding: 30px; }
            .hero h1 { font-size: 28px; }
            .section { padding: 20px; }
            .gmv-breakdown { grid-template-columns: 1fr; }
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .metric-card, .section, .weekly-stat-card {
            animation: fadeInUp 0.6s ease backwards;
        }

        /* ============================================
           WEEKLY TAB - DYNAMIC LIVE STYLES
           ============================================ */

        /* Live Dot Animation */
        .live-dot {
            width: 8px;
            height: 8px;
            background: #EF4444;
            border-radius: 50%;
            animation: livePulse 1.5s ease-in-out infinite;
            box-shadow: 0 0 10px #EF4444;
        }

        @keyframes livePulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        /* Pulse Ring around Weekly Tab */
        .pulse-ring {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 14px;
            border: 2px solid transparent;
            animation: pulseRing 2s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes pulseRing {
            0%, 100% { border-color: transparent; }
            50% { border-color: rgba(102, 126, 234, 0.5); }
        }

        .weekly-tab-btn {
            position: relative;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.1) 100%) !important;
            border: 1px solid rgba(102, 126, 234, 0.3);
        }

        .weekly-tab-btn:hover {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.2) 100%) !important;
        }

        .weekly-tab-btn.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
            box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
        }

        .weekly-tab-btn.active .live-dot {
            background: #FFFFFF;
            box-shadow: 0 0 10px #FFFFFF;
        }

        /* Weekly Hero - Animated Background */
        .weekly-hero {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, var(--bg-dark) 100%);
            position: relative;
            overflow: hidden;
            /* GPU acceleration for smooth scrolling */
            transform: translateZ(0);
            -webkit-transform: translateZ(0);
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }

        .weekly-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
            /* Removed heavy animation - static glow instead */
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
        }

        .weekly-hero::after {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 60%);
            /* Disabled animation for scroll performance */
            /* animation: floatOrb 6s ease-in-out infinite; */
            pointer-events: none;
        }

        /* Shimmer Effect for Active Report Badge */
        .active-report-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.15) 100%);
            border: 2px solid #667eea;
            padding: 14px 28px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 700;
            color: #667eea;
            position: relative;
            overflow: hidden;
            animation: badgePulse 3s ease-in-out infinite;
        }

        .active-report-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 0 15px rgba(102, 126, 234, 0.3); }
            50% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.6), 0 0 50px rgba(118, 75, 162, 0.3); }
        }

        .live-indicator {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(239, 68, 68, 0.15);
            border: 1px solid #EF4444;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            color: #EF4444;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .live-indicator .dot {
            width: 6px;
            height: 6px;
            background: #EF4444;
            border-radius: 50%;
            animation: livePulse 1s ease-in-out infinite;
        }

        /* Weekly Stats Cards - Animated */
        .weekly-stat-card-live {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            /* GPU acceleration for smooth scrolling */
            transform: translateZ(0);
            -webkit-transform: translateZ(0);
            will-change: transform;
        }

        /* Disabled heavy rotating animation for scroll performance */
        /*
        .weekly-stat-card-live::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.03), transparent);
            animation: rotateGradient 8s linear infinite;
            pointer-events: none;
        }
        */

        .weekly-stat-card-live:hover {
            transform: translateZ(0) translateY(-6px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
            border-color: #667eea;
        }

        .weekly-stat-card-live:nth-child(1)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            animation: borderGlow 2s ease-in-out infinite;
        }
        .weekly-stat-card-live:nth-child(2)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #f093fb, #f5576c);
            animation: borderGlow 2s ease-in-out infinite 0.5s;
        }
        .weekly-stat-card-live:nth-child(3)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4facfe, #00f2fe);
            animation: borderGlow 2s ease-in-out infinite 1s;
        }
        .weekly-stat-card-live:nth-child(4)::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #43e97b, #38f9d7);
            animation: borderGlow 2s ease-in-out infinite 1.5s;
        }

        @keyframes borderGlow {
            0%, 100% { filter: brightness(1); box-shadow: none; }
            50% { filter: brightness(1.3); box-shadow: 0 0 15px currentColor; }
        }

        /* Animated Value Counter Effect */
        .live-value {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 6px;
            position: relative;
        }

        .live-value::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #667eea, transparent);
            animation: underlineSlide 2s ease-in-out infinite;
        }

        @keyframes underlineSlide {
            0%, 100% { width: 40px; opacity: 0.5; }
            50% { width: 80px; opacity: 1; }
        }

        /* Section with Glow Effect */
        .section-live {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 35px;
            margin-bottom: 25px;
            border: 1px solid var(--border);
            position: relative;
            transition: all 0.3s ease;
        }

        .section-live:hover {
            border-color: rgba(102, 126, 234, 0.5);
            box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
        }

        /* Update Timestamp */
        .update-timestamp {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 8px;
        }

        .update-timestamp .refresh-icon {
            animation: spin 3s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Floating Particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(102, 126, 234, 0.6);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { left: 30%; animation-delay: 2s; }
        .particle:nth-child(3) { left: 50%; animation-delay: 4s; }
        .particle:nth-child(4) { left: 70%; animation-delay: 1s; }
        .particle:nth-child(5) { left: 90%; animation-delay: 3s; }

        @keyframes float {
            0%, 100% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% {
                transform: translateY(-100px) scale(1);
                opacity: 0;
            }
        }

        /* Glowing Section Headers */
        .section-icon-live {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            animation: iconPulse 3s ease-in-out infinite;
        }

        @keyframes iconPulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
            50% { box-shadow: 0 0 20px 5px rgba(102, 126, 234, 0.2); }
        }

        /* ============================================
           TREND TAB STYLES
           ============================================ */

        .trend-tab-btn {
            position: relative;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%) !important;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .trend-tab-btn:hover {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(6, 182, 212, 0.2) 100%) !important;
        }

        .trend-tab-btn.active {
            background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%) !important;
            box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
        }

        /* Trend Hero */
        .trend-hero {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, var(--bg-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .trend-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, #10B981 0%, #06B6D4 100%);
        }

        .trend-hero::after {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
        }

        /* Trend Badge */
        .trend-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(6, 182, 212, 0.15) 100%);
            border: 2px solid #10B981;
            padding: 12px 24px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 700;
            color: #10B981;
        }

        /* Trend Section */
        .section-trend {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 35px;
            margin-bottom: 25px;
            border: 1px solid var(--border);
            position: relative;
            transition: all 0.3s ease;
        }

        .section-trend:hover {
            border-color: rgba(16, 185, 129, 0.5);
            box-shadow: 0 10px 40px rgba(16, 185, 129, 0.1);
        }

        .section-icon-trend {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        /* Trend Stats Cards */
        .trend-stat-card {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .trend-stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
            border-color: #10B981;
        }

        .trend-stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #10B981, #06B6D4);
        }

        /* Week Row */
        .week-row {
            display: grid;
            grid-template-columns: 120px repeat(5, 1fr);
            gap: 12px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            align-items: center;
        }

        .week-row:last-child {
            border-bottom: none;
        }

        .week-row.header {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
            border-radius: 10px;
            padding: 14px;
            margin-bottom: 10px;
            font-weight: 700;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-secondary);
        }

        .week-label {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 13px;
        }

        .week-label.active {
            color: #10B981;
        }

        .week-value {
            text-align: center;
            font-size: 13px;
            color: var(--text-secondary);
        }

        .week-value.highlight {
            color: var(--text-primary);
            font-weight: 700;
        }

        /* Progress with target */
        .target-progress {
            background: var(--bg-dark);
            border-radius: 8px;
            padding: 16px;
            border: 1px solid var(--border);
        }

        .target-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .target-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        .target-values {
            display: flex;
            gap: 12px;
            font-size: 12px;
        }

        .target-current {
            color: #10B981;
            font-weight: 700;
        }

        .target-goal {
            color: var(--text-secondary);
        }

        .target-bar {
            height: 10px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 5px;
            overflow: hidden;
        }

        .target-fill {
            height: 100%;
            background: linear-gradient(90deg, #10B981 0%, #06B6D4 100%);
            border-radius: 5px;
            transition: width 1s ease;
        }

        .target-percentage {
            text-align: right;
            font-size: 11px;
            color: var(--text-secondary);
            margin-top: 6px;
        }

        /* Cumulative Chart Styling */
        .cumulative-card {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 14px;
            padding: 22px;
        }

        .cumulative-card h3 {
            font-size: 13px;
            font-weight: 700;
            color: #10B981;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
        }

        /* Week Indicator */
        .week-indicator {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid #10B981;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            color: #10B981;
        }

        /* Projection Tab Styles */
        .projection-hero {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.1) 50%, rgba(102, 126, 234, 0.1) 100%);
            border-color: rgba(16, 185, 129, 0.3);
        }

        .projection-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(6, 182, 212, 0.15) 100%);
            border: 1px solid rgba(16, 185, 129, 0.4);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: #10B981;
        }

        .projection-tab-btn {
            position: relative;
        }

        .projection-tab-btn::after {
            content: '';
            position: absolute;
            top: 8px;
            right: 8px;
            width: 6px;
            height: 6px;
            background: #10B981;
            border-radius: 50%;
        }

        /* Pipeline Tab Styles */
        .pipeline-hero {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.1) 50%, rgba(6, 182, 212, 0.1) 100%);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .pipeline-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.15) 100%);
            border: 1px solid rgba(102, 126, 234, 0.4);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: #667eea;
        }

        .pipeline-tab-btn {
            position: relative;
        }

        .pipeline-tab-btn::after {
            content: '';
            position: absolute;
            top: 8px;
            right: 8px;
            width: 6px;
            height: 6px;
            background: #667eea;
            border-radius: 50%;
        }

        .pipeline-section {
            border-color: rgba(102, 126, 234, 0.2);
        }

        .pipeline-category {
            margin-bottom: 28px;
        }

        .category-title {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 16px;
            padding: 10px 16px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .category-title.success {
            background: rgba(16, 185, 129, 0.15);
            color: #10B981;
        }

        .category-title.progress {
            background: rgba(102, 126, 234, 0.15);
            color: #667eea;
        }

        .category-title.pending {
            background: rgba(245, 158, 11, 0.15);
            color: #F59E0B;
        }

        .category-title.network {
            background: rgba(6, 182, 212, 0.15);
            color: #06B6D4;
        }

        .category-title.prospect {
            background: rgba(156, 163, 175, 0.15);
            color: #9CA3AF;
        }

        .partner-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .partner-card {
            background: var(--bg-dark);
            border-radius: 12px;
            padding: 16px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .partner-card:hover {
            transform: translateY(-2px);
        }

        .partner-card.active {
            border-color: rgba(16, 185, 129, 0.4);
        }

        .partner-card.active:hover {
            border-color: #10B981;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
        }

        .partner-card.pending {
            border-color: rgba(245, 158, 11, 0.3);
        }

        .partner-card.pending:hover {
            border-color: #F59E0B;
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
        }

        .partner-card.prospect {
            border-color: rgba(156, 163, 175, 0.3);
        }

        .partner-card.prospect:hover {
            border-color: #9CA3AF;
        }

        .partner-card .partner-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .partner-card .partner-status,
        .partner-card .partner-note {
            font-size: 11px;
            color: var(--text-secondary);
        }

        .partner-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .partner-row {
            background: var(--bg-dark);
            border-radius: 10px;
            padding: 14px 18px;
            border: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.2s ease;
        }

        .partner-row:hover {
            border-color: rgba(102, 126, 234, 0.4);
        }

        .partner-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .partner-info .partner-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .partner-owner {
            font-size: 11px;
            background: rgba(102, 126, 234, 0.15);
            color: #667eea;
            padding: 3px 10px;
            border-radius: 12px;
            font-weight: 500;
        }

        .partner-note {
            font-size: 12px;
            color: var(--text-secondary);
            max-width: 50%;
            text-align: right;
        }

        .partner-chip {
            display: inline-flex;
            align-items: center;
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            color: #06B6D4;
            padding: 8px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .network-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        /* Loading States */
        .pipeline-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 40px;
            color: var(--text-secondary);
        }

        .loading-spinner {
            width: 24px;
            height: 24px;
            border: 3px solid var(--border);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .no-partners {
            padding: 20px;
            text-align: center;
            color: var(--text-secondary);
            font-style: italic;
        }

        .region-card {
            background: var(--bg-dark);
            border-radius: 16px;
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .region-header {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 16px 20px;
            font-weight: 700;
            font-size: 15px;
        }

        .region-header.uae {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
            color: #10B981;
        }

        .region-header.uk {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(239, 68, 68, 0.1) 100%);
            color: #667eea;
        }

        .region-header.az {
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
            color: #06B6D4;
        }

        .region-header.stats {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(239, 68, 68, 0.1) 100%);
            color: #F59E0B;
        }

        .region-flag {
            font-size: 20px;
        }

        .region-partners {
            padding: 16px 20px;
        }

        .region-partners .partner-row {
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--border);
            border-radius: 0;
            padding: 12px 0;
        }

        .region-partners .partner-row:last-child {
            border-bottom: none;
        }

        .status-badge {
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 10px;
            font-weight: 600;
        }

        .status-badge.shariah {
            background: rgba(245, 158, 11, 0.15);
            color: #F59E0B;
        }

        .status-badge.active {
            background: rgba(16, 185, 129, 0.15);
            color: #10B981;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            padding: 20px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 28px;
            font-weight: 800;
        }

        .stat-label {
            font-size: 11px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        @media (max-width: 1200px) {
            .partner-grid { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 768px) {
            .partner-grid { grid-template-columns: repeat(2, 1fr); }
            .partner-row { flex-direction: column; align-items: flex-start; gap: 8px; }
            .partner-note { max-width: 100%; text-align: left; }
        }

        /* Password Modal Styles */
        .password-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 22, 40, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(10px);
        }

        .password-modal-overlay.active {
            display: flex;
        }

        .password-modal {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--border);
            max-width: 400px;
            width: 90%;
            text-align: center;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from { opacity: 0; transform: translateY(-30px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        .password-modal-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(6, 182, 212, 0.15) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            border: 2px solid rgba(16, 185, 129, 0.3);
        }

        .password-modal h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .password-modal p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .password-input-wrapper {
            position: relative;
            margin-bottom: 20px;
        }

        .password-input {
            width: 100%;
            padding: 16px 20px;
            background: var(--bg-dark);
            border: 2px solid var(--border);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .password-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 217, 165, 0.15);
        }

        .password-input.error {
            border-color: #EF4444;
            animation: shake 0.4s ease;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            20%, 60% { transform: translateX(-8px); }
            40%, 80% { transform: translateX(8px); }
        }

        .password-error-msg {
            color: #EF4444;
            font-size: 13px;
            margin-top: 8px;
            display: none;
        }

        .password-error-msg.show {
            display: block;
        }

        .password-submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border: none;
            border-radius: 12px;
            color: var(--bg-dark);
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .password-submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 217, 165, 0.3);
        }

        .password-cancel-btn {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-size: 13px;
            margin-top: 16px;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            transition: color 0.3s ease;
        }

        .password-cancel-btn:hover {
            color: var(--text-primary);
        }

        /* Admin Mode Styles */
        .admin-login-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            display: none;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
            transition: all 0.3s ease;
            z-index: 999;
            font-family: 'Inter', sans-serif;
        }

        .admin-login-btn.visible {
            display: flex;
        }

        .admin-login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
        }

        .admin-login-btn.logged-in {
            background: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
        }

        .admin-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 22, 40, 0.95);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(10px);
        }

        .admin-modal-overlay.active {
            display: flex;
        }

        .admin-modal {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--border);
            max-width: 400px;
            width: 90%;
            text-align: center;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
            animation: modalSlideIn 0.3s ease;
        }

        .admin-modal-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.15) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            border: 2px solid rgba(102, 126, 234, 0.3);
        }

        /* Edit Modal Styles */
        .edit-modal {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 35px;
            border: 1px solid var(--border);
            max-width: 500px;
            width: 90%;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
            animation: modalSlideIn 0.3s ease;
        }

        .edit-modal h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .edit-modal .partner-label {
            font-size: 14px;
            color: #667eea;
            margin-bottom: 20px;
        }

        .edit-form-group {
            margin-bottom: 16px;
            text-align: left;
        }

        .edit-form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .edit-input, .edit-textarea {
            width: 100%;
            padding: 14px 16px;
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .edit-textarea {
            min-height: 80px;
            resize: vertical;
        }

        .edit-input:focus, .edit-textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
        }

        .edit-btn-group {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .edit-save-btn {
            flex: 1;
            padding: 14px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 10px;
            color: white;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .edit-save-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .edit-save-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .edit-cancel-btn {
            padding: 14px 24px;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .edit-cancel-btn:hover {
            border-color: var(--text-secondary);
            color: var(--text-primary);
        }

        /* Editable indicator in admin mode */
        .admin-mode .partner-note.editable {
            cursor: pointer;
            transition: all 0.2s ease;
            padding: 4px 8px;
            margin: -4px -8px;
            border-radius: 6px;
        }

        .admin-mode .partner-note.editable:hover {
            background: rgba(102, 126, 234, 0.15);
        }

        .admin-mode .partner-note.editable::before {
            content: '✏️ ';
            font-size: 11px;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .admin-mode .partner-note.editable:hover::before {
            opacity: 1;
        }

        .saving-indicator {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #667eea;
        }

        .saving-indicator .spinner {
            width: 14px;
            height: 14px;
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-top-color: #667eea;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .save-success {
            color: #10B981;
        }

        .admin-status-bar {
            position: fixed;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(6, 182, 212, 0.9) 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: none;
            align-items: center;
            gap: 8px;
            z-index: 1001;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
        }

        .admin-status-bar.visible {
            display: flex;
        }

        /* Partner Action Buttons (visible in admin mode) */
        .partner-actions {
            display: none;
            gap: 6px;
            margin-left: auto;
        }

        .admin-mode .partner-actions {
            display: flex;
        }

        .partner-action-btn {
            width: 28px;
            height: 28px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            background: var(--bg-card);
            border: 1px solid var(--border);
        }

        .partner-action-btn:hover {
            transform: scale(1.1);
        }

        .partner-action-btn.status-btn {
            background: rgba(102, 126, 234, 0.15);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .partner-action-btn.status-btn:hover {
            background: rgba(102, 126, 234, 0.25);
        }

        .partner-action-btn.delete-btn {
            background: rgba(239, 68, 68, 0.1);
            border-color: rgba(239, 68, 68, 0.3);
        }

        .partner-action-btn.delete-btn:hover {
            background: rgba(239, 68, 68, 0.2);
        }

        /* Status Dropdown */
        .status-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 8px;
            min-width: 160px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            z-index: 100;
            display: none;
        }

        .status-dropdown.active {
            display: block;
        }

        .status-option {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 13px;
            color: var(--text-primary);
            transition: background 0.2s ease;
        }

        .status-option:hover {
            background: rgba(102, 126, 234, 0.1);
        }

        .status-option.active-status { color: #10B981; }
        .status-option.progress-status { color: #667eea; }
        .status-option.pending-status { color: #F59E0B; }
        .status-option.prospect-status { color: #9CA3AF; }

        /* Add Partner Button */
        .add-partner-btn {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 16px;
            background: rgba(102, 126, 234, 0.1);
            border: 2px dashed rgba(102, 126, 234, 0.3);
            border-radius: 12px;
            color: #667eea;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 16px;
            font-family: 'Inter', sans-serif;
        }

        .admin-mode .add-partner-btn {
            display: flex;
        }

        .add-partner-btn:hover {
            background: rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.5);
        }

        /* Add Partner Modal */
        .add-partner-modal {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 35px;
            border: 1px solid var(--border);
            max-width: 500px;
            width: 90%;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
            animation: modalSlideIn 0.3s ease;
        }

        .add-partner-modal h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .status-select {
            width: 100%;
            padding: 14px 16px;
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
        }

        .status-select option {
            background: var(--bg-dark);
            color: var(--text-primary);
        }

        /* Hidden partner styling */
        .partner-card.hidden-partner,
        .partner-row.hidden-partner {
            opacity: 0.4;
            position: relative;
        }

        .partner-card.hidden-partner::after,
        .partner-row.hidden-partner::after {
            content: 'GİZLİ';
            position: absolute;
            top: 8px;
            right: 8px;
            background: rgba(239, 68, 68, 0.2);
            color: #EF4444;
            font-size: 9px;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }

        /* Sheets sync indicator */
        .sync-indicator {
            position: fixed;
            bottom: 70px;
            right: 20px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 8px 14px;
            border-radius: 20px;
            font-size: 11px;
            color: var(--text-secondary);
            display: none;
            align-items: center;
            gap: 8px;
            z-index: 998;
        }

        .sync-indicator.visible {
            display: flex;
        }

        .sync-indicator.syncing {
            color: #667eea;
        }

        .sync-indicator.synced {
            color: #10B981;
        }

        /* ==================== ENHANCED HOVER EFFECTS ==================== */

        /* Section hover */
        .section {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .section:hover {
            transform: translateZ(0) translateY(-2px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(0, 217, 165, 0.3);
        }

        /* Tab button hover enhancement */
        .tab-btn {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .tab-btn:hover:not(.active) {
            transform: translateY(-2px);
            background: rgba(0, 217, 165, 0.1);
        }

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

        /* Partner card hover */
        .partner-item {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .partner-item:hover {
            transform: translateX(8px);
            background: rgba(0, 217, 165, 0.08);
            border-left: 3px solid var(--primary);
            padding-left: 12px;
        }

        /* GMV breakdown item hover */
        .gmv-item {
            transition: all 0.3s ease;
        }

        .gmv-item:hover {
            transform: scale(1.02);
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
        }

        /* Highlight box hover */
        .highlight-box {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .highlight-box:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 217, 165, 0.15);
        }

        /* Week row hover */
        .week-row {
            transition: all 0.2s ease;
        }

        .week-row:hover {
            background: rgba(102, 126, 234, 0.08);
        }

        /* Button ripple effect */
        .btn-primary, .tab-btn, .login-btn {
            position: relative;
            overflow: hidden;
        }

        .btn-primary::after, .login-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-primary:active::after, .login-btn:active::after {
            width: 300px;
            height: 300px;
        }

        /* Icon bounce on hover */
        .section-icon {
            transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .section:hover .section-icon {
            transform: scale(1.2) rotate(5deg);
        }

        /* Value highlight on hover */
        .metric-value, .stat-value, .amount, .value {
            transition: all 0.3s ease;
        }

        .metric-card:hover .metric-value,
        .section:hover .amount {
            text-shadow: 0 0 20px currentColor;
        }

        /* ==================== SKELETON LOADING ==================== */

        .skeleton {
            background: linear-gradient(90deg,
                var(--bg-card) 25%,
                rgba(255, 255, 255, 0.08) 50%,
                var(--bg-card) 75%
            );
            background-size: 200% 100%;
            animation: skeletonShimmer 1.5s infinite;
            border-radius: 8px;
        }

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

        .skeleton-text {
            height: 16px;
            margin-bottom: 8px;
            border-radius: 4px;
        }

        .skeleton-text.large {
            height: 32px;
            width: 60%;
        }

        .skeleton-text.medium {
            height: 20px;
            width: 80%;
        }

        .skeleton-text.small {
            height: 14px;
            width: 40%;
        }

        .skeleton-card {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid var(--border);
        }

        .skeleton-metric {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .skeleton-chart {
            height: 200px;
            border-radius: 12px;
        }

        /* ==================== LAST UPDATED INDICATOR ==================== */

        .last-updated {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-secondary);
            padding: 8px 16px;
            background: rgba(0, 217, 165, 0.08);
            border-radius: 20px;
            border: 1px solid rgba(0, 217, 165, 0.2);
            transition: all 0.3s ease;
        }

        .last-updated:hover {
            background: rgba(0, 217, 165, 0.15);
            border-color: rgba(0, 217, 165, 0.4);
        }

        .last-updated-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .last-updated-text {
            font-weight: 500;
        }

        .last-updated-time {
            font-weight: 700;
            color: var(--primary);
        }

        /* Header with last updated */
        .header-with-update {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 24px;
        }

        /* Refresh button */
        .refresh-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: transparent;
            border: 1px solid var(--border);
            border-radius: 20px;
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .refresh-btn:hover {
            background: rgba(0, 217, 165, 0.1);
            border-color: var(--primary);
            color: var(--primary);
        }

        .refresh-btn.refreshing .refresh-icon {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* ==================== PIPELINE FILTERS ==================== */
        .pipeline-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
            padding: 16px;
            background: var(--bg-card);
            border-radius: 16px;
            border: 1px solid var(--border);
        }

        .filter-group {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-label {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .filter-btn {
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: transparent;
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .filter-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(0, 217, 165, 0.1);
        }

        .filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--bg-dark);
            font-weight: 600;
        }

        .filter-btn .filter-count {
            background: rgba(0, 0, 0, 0.2);
            padding: 2px 6px;
            border-radius: 10px;
            font-size: 10px;
        }

        .filter-btn.active .filter-count {
            background: rgba(0, 0, 0, 0.3);
        }

        /* Status filter colors */
        .filter-btn[data-status="active"].active {
            background: #10B981;
            border-color: #10B981;
        }

        .filter-btn[data-status="progress"].active {
            background: #667eea;
            border-color: #667eea;
        }

        .filter-btn[data-status="pending"].active {
            background: #F59E0B;
            border-color: #F59E0B;
        }

        .filter-btn[data-status="prospect"].active {
            background: #9CA3AF;
            border-color: #9CA3AF;
        }

        /* Hidden state for filtered items */
        .pipeline-section.hidden-by-filter,
        .pipeline-category.hidden-by-filter,
        .partner-card.hidden-by-filter {
            display: none !important;
        }

        /* No results message */
        .no-filter-results {
            text-align: center;
            padding: 40px;
            color: var(--text-secondary);
        }

        .no-filter-results-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        @media (max-width: 768px) {
            .pipeline-filters {
                flex-direction: column;
                gap: 12px;
            }

            .filter-group {
                flex-wrap: wrap;
            }
        }

        /* ==================== IN-APP NOTIFICATION BANNER ==================== */
        .in-app-notification {
            position: fixed;
            top: 70px;
            left: 50%;
            transform: translateX(-50%) translateY(-120%);
            z-index: 10000;
            max-width: 500px;
            width: calc(100% - 32px);
            background: linear-gradient(135deg, var(--bg-card) 0%, #1E3A5F 100%);
            border: 1px solid var(--primary);
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: 0 10px 40px rgba(0, 217, 165, 0.3), 0 4px 20px rgba(0, 0, 0, 0.4);
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
            opacity: 0;
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .in-app-notification.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .in-app-notification.hiding {
            transform: translateX(-50%) translateY(-120%);
            opacity: 0;
        }

        .in-app-notification-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
            animation: notif-pulse 2s ease-in-out infinite;
        }

        @keyframes notif-pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(0, 217, 165, 0.4); }
            50% { box-shadow: 0 0 0 8px rgba(0, 217, 165, 0); }
        }

        .in-app-notification-content {
            flex: 1;
            min-width: 0;
        }

        .in-app-notification-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .in-app-notification-badge {
            background: var(--primary);
            color: #0A1628;
            font-size: 10px;
            font-weight: 800;
            padding: 2px 8px;
            border-radius: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .in-app-notification-message {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.4;
        }

        .in-app-notification-actions {
            display: flex;
            gap: 8px;
            margin-top: 12px;
        }

        .in-app-notification-btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            border: none;
        }

        .in-app-notification-btn.primary {
            background: var(--primary);
            color: #0A1628;
        }

        .in-app-notification-btn.primary:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
        }

        .in-app-notification-btn.secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-secondary);
        }

        .in-app-notification-btn.secondary:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        .in-app-notification-close {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: var(--text-secondary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .in-app-notification-close:hover {
            background: rgba(255, 255, 255, 0.2);
            color: var(--text-primary);
        }

        /* Mobile adjustments */
        @media (max-width: 480px) {
            .in-app-notification {
                top: 60px;
                padding: 14px 16px;
                border-radius: 12px;
            }

            .in-app-notification-icon {
                width: 38px;
                height: 38px;
                font-size: 18px;
            }

            .in-app-notification-title {
                font-size: 14px;
            }

            .in-app-notification-message {
                font-size: 12px;
            }

            .in-app-notification-btn {
                padding: 6px 12px;
                font-size: 11px;
            }
        }

        /* ==================== ADMIN NOTIFICATION PANEL ==================== */
        .admin-notif-panel {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 9999;
        }

        .admin-notif-toggle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border: none;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 217, 165, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .admin-notif-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(0, 217, 165, 0.5);
        }

        .admin-notif-form {
            position: absolute;
            bottom: 70px;
            left: 0;
            width: 320px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-origin: bottom left;
        }

        .admin-notif-form.hidden {
            opacity: 0;
            transform: scale(0.8);
            pointer-events: none;
        }

        .admin-notif-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

        .admin-notif-header h4 {
            margin: 0;
            color: #0A1628;
            font-size: 16px;
            font-weight: 700;
        }

        .admin-notif-close {
            background: rgba(0, 0, 0, 0.2);
            border: none;
            color: #0A1628;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .admin-notif-close:hover {
            background: rgba(0, 0, 0, 0.3);
        }

        .admin-notif-body {
            padding: 16px;
        }

        .admin-notif-field {
            margin-bottom: 14px;
        }

        .admin-notif-field label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .admin-notif-field input,
        .admin-notif-field textarea {
            width: 100%;
            padding: 10px 12px;
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 14px;
            font-family: inherit;
            transition: all 0.2s ease;
        }

        .admin-notif-field input:focus,
        .admin-notif-field textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 217, 165, 0.1);
        }

        .admin-notif-field textarea {
            min-height: 70px;
            resize: vertical;
        }

        .admin-notif-field select {
            width: 100%;
            padding: 10px 12px;
            background: var(--bg-dark);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-size: 14px;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.2s ease;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300D9A5' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 36px;
        }

        .admin-notif-field select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 217, 165, 0.1);
        }

        .admin-notif-field select option {
            background: var(--bg-dark);
            color: var(--text);
            padding: 8px;
        }

        .admin-notif-icons {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .admin-notif-icons .icon-btn {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: 2px solid var(--border);
            background: var(--bg-dark);
            font-size: 20px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .admin-notif-icons .icon-btn:hover {
            border-color: var(--primary);
            transform: scale(1.1);
        }

        .admin-notif-icons .icon-btn.active {
            border-color: var(--primary);
            background: rgba(0, 217, 165, 0.1);
            box-shadow: 0 0 0 3px rgba(0, 217, 165, 0.2);
        }

        .admin-notif-send {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border: none;
            border-radius: 10px;
            color: #0A1628;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .admin-notif-send:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 217, 165, 0.4);
        }

        .admin-notif-status {
            margin-top: 12px;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 13px;
            text-align: center;
            display: none;
        }

        .admin-notif-status.success {
            display: block;
            background: rgba(16, 185, 129, 0.1);
            color: #10B981;
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .admin-notif-status.error {
            display: block;
            background: rgba(239, 68, 68, 0.1);
            color: #EF4444;
            border: 1px solid rgba(239, 68, 68, 0.2);
        }

        /* Mobile adjustments for admin panel */
        @media (max-width: 480px) {
            .admin-notif-panel {
                bottom: 15px;
                left: 15px;
            }

            .admin-notif-toggle {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .admin-notif-form {
                width: calc(100vw - 30px);
                max-width: 300px;
            }
        }

        /* =====================================================
           EXECUTIVE SUMMARY STYLES
           ===================================================== */

        .executive-summary {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px;
        }

        /* ========== NEWSPAPER HEADER ========== */
        .exec-header {
            text-align: center;
            padding-bottom: 30px;
            border-bottom: 3px double var(--border);
            margin-bottom: 35px;
        }

        .exec-masthead {
            font-size: 11px;
            color: var(--text-secondary);
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .exec-headline {
            font-size: 42px;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .exec-headline .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .exec-subhead {
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 400;
        }

        .exec-date-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 18px;
            padding-top: 15px;
            border-top: 1px solid var(--border);
            font-size: 12px;
            color: var(--text-secondary);
        }

        .exec-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            color: var(--success);
        }

        .exec-live-dot {
            width: 6px;
            height: 6px;
            background: var(--success);
            border-radius: 50%;
            animation: execPulse 2s infinite;
        }

        @keyframes execPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        /* ========== KPI HERO CARDS ========== */
        .kpi-hero-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .kpi-hero-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 26px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .kpi-hero-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .kpi-hero-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
        }

        .kpi-hero-card:nth-child(1)::before { background: linear-gradient(90deg, #00D9A5, #00F5C4); }
        .kpi-hero-card:nth-child(2)::before { background: linear-gradient(90deg, #FFD700, #FFA500); }
        .kpi-hero-card:nth-child(3)::before { background: linear-gradient(90deg, #667eea, #764ba2); }
        .kpi-hero-card:nth-child(4)::before { background: linear-gradient(90deg, #10B981, #34D399); }

        .kpi-label {
            font-size: 10px;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 8px;
        }

        .kpi-value {
            font-size: 34px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .kpi-change {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 12px;
            background: rgba(16, 185, 129, 0.15);
            color: #10B981;
        }

        .kpi-detail {
            font-size: 11px;
            color: var(--text-secondary);
            margin-top: 8px;
        }

        /* ========== QUOTE BOX ========== */
        .quote-box {
            background: linear-gradient(135deg, var(--bg-card) 0%, rgba(102, 126, 234, 0.1) 100%);
            border-left: 4px solid var(--accent);
            padding: 25px 30px;
            margin-bottom: 30px;
            border-radius: 0 16px 16px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .quote-content {
            flex: 1;
        }

        .quote-text {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.5;
            color: var(--text-primary);
        }

        .quote-text .accent {
            color: var(--accent);
        }

        .quote-source {
            font-size: 12px;
            color: var(--text-secondary);
            margin-top: 8px;
        }

        .quote-stat {
            text-align: center;
            padding: 20px 30px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 16px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        .quote-stat-value {
            font-size: 36px;
            font-weight: 900;
            color: var(--accent);
        }

        .quote-stat-label {
            font-size: 11px;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* ========== TREND ROW ========== */
        .exec-trend-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }

        .exec-trend-card {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 22px;
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s ease;
        }

        .exec-trend-card:hover {
            border-color: var(--primary);
        }

        .exec-trend-label {
            font-size: 10px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .exec-trend-value {
            font-size: 32px;
            font-weight: 800;
        }

        .exec-trend-comparison {
            font-size: 11px;
            color: var(--text-secondary);
            margin-top: 6px;
        }

        /* ========== MAIN GRID ========== */
        .exec-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 24px;
            margin-bottom: 24px;
        }

        .exec-section {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 28px;
            border: 1px solid var(--border);
        }

        .exec-section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .exec-section-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .exec-section-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-primary);
        }

        /* GMV Breakdown */
        .gmv-breakdown {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .gmv-item {
            text-align: center;
            padding: 22px 16px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .gmv-item:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .gmv-item-label {
            font-size: 10px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .gmv-item-value {
            font-size: 26px;
            font-weight: 800;
        }

        .gmv-item-pct {
            font-size: 11px;
            color: var(--text-secondary);
            margin-top: 6px;
        }

        /* Weekly Highlights */
        .exec-weekly-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .exec-weekly-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .exec-weekly-item:hover {
            border-color: #667eea;
        }

        .exec-weekly-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.1));
        }

        .exec-weekly-info { flex: 1; }

        .exec-weekly-label {
            font-size: 10px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .exec-weekly-value {
            font-size: 20px;
            font-weight: 700;
            margin-top: 2px;
            color: var(--text-primary);
        }

        /* 2026 Targets */
        .exec-targets-grid {
            display: grid;
            gap: 14px;
        }

        .exec-target-item {
            padding: 16px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            border: 1px solid var(--border);
        }

        .exec-target-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .exec-target-label {
            font-size: 12px;
            color: var(--text-secondary);
        }

        .exec-target-values {
            font-size: 12px;
            font-weight: 600;
        }

        .exec-target-bar {
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .exec-target-fill {
            height: 100%;
            border-radius: 4px;
        }

        .exec-target-pct {
            font-size: 10px;
            color: var(--text-secondary);
            margin-top: 6px;
            text-align: right;
        }

        /* ========== QUICK STATS ========== */
        .exec-quick-stats {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 14px;
            margin-bottom: 24px;
        }

        .exec-quick-stat {
            background: var(--bg-card);
            border-radius: 12px;
            padding: 16px;
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s ease;
        }

        .exec-quick-stat:hover {
            border-color: var(--primary);
        }

        .exec-quick-stat-value {
            font-size: 20px;
            font-weight: 700;
        }

        .exec-quick-stat-label {
            font-size: 9px;
            color: var(--text-secondary);
            margin-top: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ========== EXECUTIVE RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .kpi-hero-grid { grid-template-columns: repeat(2, 1fr); }
            .exec-grid { grid-template-columns: 1fr; }
            .exec-quick-stats { grid-template-columns: repeat(3, 1fr); }
        }

        @media (max-width: 768px) {
            .executive-summary { padding: 20px; }
            .kpi-hero-grid { grid-template-columns: 1fr; }
            .gmv-breakdown { grid-template-columns: 1fr; }
            .exec-weekly-highlights { grid-template-columns: 1fr; }
            .exec-trend-row { grid-template-columns: 1fr; }
            .exec-quick-stats { grid-template-columns: repeat(2, 1fr); }
            .exec-headline { font-size: 28px; }
            .quote-box { flex-direction: column; }
            .quote-stat { width: 100%; }
            .exec-date-row { gap: 15px; }
        }

        /* ========== EXECUTIVE TAB BUTTON ========== */
        .executive-tab-btn .live-dot {
            width: 6px;
            height: 6px;
            background: var(--success);
            border-radius: 50%;
            animation: execPulse 2s infinite;
            flex-shrink: 0;
        }

        @keyframes execPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .tab-btn.executive-tab-btn.active {
            background: var(--card-bg) !important;
            border: 1px solid var(--primary) !important;
            color: var(--text-primary) !important;
            font-weight: 600 !important;
        }

        .tab-btn.executive-tab-btn.active .live-dot {
            background: var(--success);
        }
