* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #ffcc00;
      --primary-dark: #e6b800;
      --bg-dark: #0f1219;
      --bg-card: #1a1d2e;
      --bg-gradient: linear-gradient(135deg, #1e223a, #2c2f4a);
      --bg-input: #232940;
      --text-primary: #ffffff;
      --text-secondary: #a0aec0;
      --success: #10b981;
      --error: #ef4444;
      --border: #2d3748;
      --live-green: #00ff88;
      --active: #22c55e;
      --glass-bg: rgba(26, 29, 46, 0.7);
      --glass-border: rgba(255, 204, 0, 0.2);
    }

    body {
      margin: 0;
      background: linear-gradient(135deg, #0f1219 0%, #1a1d2e 100%);
      font-family: 'Noto Kufi Arabic', sans-serif;
      color: var(--text-primary);
      min-height: 100vh;
    }

    /* Main Container */
    .trading-desk-wrapper {
      max-width: 1600px;
      margin: 0 auto;
      padding: 20px;
    }

    /* Header */
    .desk-header {
      text-align: center;
      margin-bottom: 30px;
      animation: fadeInDown 0.6s ease;
    }

    .desk-header h1 {
      font-family: 'Noto Kufi Arabic', sans-serif;
      font-size: 2.8rem;
      background: linear-gradient(135deg, var(--primary), #ffd700);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 10px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .live-indicator {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 255, 136, 0.1);
      padding: 8px 16px;
      border-radius: 20px;
      border: 2px solid var(--live-green);
      font-size: 0.4em;
      color: var(--live-green);
      animation: pulse 2s infinite;
    }

    .live-dot {
      width: 10px;
      height: 10px;
      background: var(--live-green);
      border-radius: 50%;
      animation: blink 1.5s infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.3; }
    }

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

    .desk-header p {
      color: var(--text-secondary);
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* Tab Navigation */
    .tab-navigation {
      background: var(--bg-gradient);
      border-radius: 20px;
      padding: 10px;
      margin-bottom: 30px;
      border: 2px solid rgba(255, 204, 0, 0.2);
      display: flex;
      gap: 10px;
      overflow-x: auto;
      animation: fadeInUp 0.6s ease;
    }

    .tab-btn {
      flex: 1;
      min-width: 180px;
      padding: 18px 25px;
      background: transparent;
      border: 2px solid transparent;
      color: var(--text-secondary);
      border-radius: 15px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      font-family: inherit;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      white-space: nowrap;
    }

    .tab-btn:hover {
      background: rgba(255, 204, 0, 0.1);
      border-color: rgba(255, 204, 0, 0.3);
      color: var(--primary);
      transform: translateY(-2px);
    }

    .tab-btn.active {
      background: var(--primary);
      color: #191d34;
      border-color: var(--primary);
      box-shadow: 0 5px 20px rgba(255, 204, 0, 0.4);
    }

    .tab-icon {
      font-size: 1.3rem;
    }

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

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

    /* Quick Stats Bar */
    .stats-bar {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 15px;
      margin-bottom: 30px;
      animation: fadeInUp 0.6s ease 0.2s both;
    }

    .stat-card {
      background: var(--bg-gradient);
      padding: 20px;
      border-radius: 15px;
      border: 2px solid rgba(255, 204, 0, 0.2);
      text-align: center;
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
      box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
    }

    .stat-icon {
      font-size: 2rem;
      margin-bottom: 8px;
    }

    .stat-label {
      color: var(--text-secondary);
      font-size: 0.85rem;
      margin-bottom: 5px;
    }

    .stat-value {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--primary);
    }

    /* Widget Container */
    .widget-container {
      background: var(--bg-gradient);
      border-radius: 20px;
      padding: 30px;
      margin-bottom: 25px;
      border: 2px solid rgba(255, 204, 0, 0.15);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 0.6s ease;
    }

    .widget-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
      gap: 15px;
    }

    .widget-title {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .widget-icon {
      font-size: 2rem;
      width: 55px;
      height: 55px;
      background: rgba(255, 204, 0, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(255, 204, 0, 0.3);
    }

    .widget-title-text h3 {
      font-size: 1.4rem;
      color: var(--primary);
      margin-bottom: 5px;
      font-weight: 700;
    }

    .widget-title-text p {
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    .widget-status {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 18px;
      background: rgba(0, 255, 136, 0.1);
      border-radius: 20px;
      border: 2px solid var(--live-green);
      font-weight: 600;
      color: var(--live-green);
      font-size: 0.9rem;
    }

    .status-dot {
      width: 10px;
      height: 10px;
      background: var(--live-green);
      border-radius: 50%;
      animation: blink 1.5s infinite;
    }

    /* Widget Body */
    .widget-body {
      background: rgba(0, 0, 0, 0.2);
      border-radius: 15px;
      padding: 20px;
      min-height: 400px;
      position: relative;
      overflow: hidden;
    }

    .widget-loading {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
    }

    .spinner {
      width: 50px;
      height: 50px;
      border: 4px solid rgba(255, 204, 0, 0.2);
      border-top: 4px solid var(--primary);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto 15px;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .loading-text {
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    /* Widget Grid */
    .widget-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      gap: 25px;
      margin-bottom: 30px;
    }

    /* Live Clock Styles */
    .live-clock {
      background: linear-gradient(135deg, var(--bg-card) 0%, #252a45 100%);
      padding: 30px;
      border-radius: 20px;
      margin-bottom: 30px;
      border: 2px solid var(--border);
      text-align: center;
    }

    .clock-display {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      font-family: 'Noto Kufi Arabic', monospace;
      margin-bottom: 10px;
      text-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    }

    .clock-label {
      font-size: 1rem;
      color: var(--text-secondary);
    }

    /* Sessions Grid */
    .sessions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }

    .session-card {
      background: var(--bg-card);
      border-radius: 16px;
      padding: 25px;
      border: 2px solid var(--border);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .session-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 4px;
      background: var(--border);
      transition: all 0.3s ease;
    }

    .session-card.active {
      border-color: var(--active);
      background: linear-gradient(135deg, #1a1d2e 0%, #1d2e1f 100%);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
    }

    .session-card.active::before {
      background: var(--active);
      box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
    }

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

    .session-name {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text-primary);
    }

    .session-status {
      padding: 5px 12px;
      border-radius: 15px;
      font-size: 0.8rem;
      font-weight: 600;
      background: var(--bg-input);
      color: var(--text-secondary);
    }

    .session-card.active .session-status {
      background: var(--active);
      color: white;
      animation: pulse 2s infinite;
    }

    .session-time {
      font-size: 1.1rem;
      color: var(--primary);
      margin-bottom: 12px;
      font-weight: 600;
    }

    .session-info {
      background: var(--bg-input);
      padding: 12px;
      border-radius: 10px;
      margin-top: 12px;
    }

    .session-info h4 {
      color: var(--primary);
      font-size: 0.9rem;
      margin-bottom: 8px;
    }

    .session-pairs {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .pair-badge {
      background: var(--border);
      padding: 3px 8px;
      border-radius: 5px;
      font-size: 0.8rem;
      color: var(--text-primary);
    }

    .session-card.active .pair-badge {
      background: rgba(34, 197, 94, 0.2);
      color: var(--active);
      font-weight: 600;
    }

    .session-description {
      color: var(--text-secondary);
      font-size: 0.85rem;
      line-height: 1.5;
      margin-top: 8px;
    }

    /* Info Cards */
    .info-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 30px;
    }

    .info-card {
      background: var(--bg-card);
      padding: 20px;
      border-radius: 15px;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .info-card:hover {
      border-color: var(--primary);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 204, 0, 0.15);
    }

    .info-card h3 {
      color: var(--primary);
      font-size: 1.1rem;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .info-card p {
      color: var(--text-secondary);
      line-height: 1.6;
      font-size: 0.9rem;
    }

    .info-card ul {
      margin-top: 10px;
      padding-right: 20px;
      color: var(--text-secondary);
    }

    .info-card li {
      margin: 6px 0;
      line-height: 1.4;
      font-size: 0.9rem;
    }

    /* Filter Section */
    .filter-section {
      background: var(--bg-card);
      padding: 25px;
      border-radius: 16px;
      margin-bottom: 30px;
      border: 1px solid var(--border);
    }

    .filter-controls {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
      margin-bottom: 15px;
    }

    .filter-group label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      color: var(--text-primary);
      font-size: 0.9rem;
    }

    select, input[type="text"] {
      width: 100%;
      padding: 10px 12px;
      background: var(--bg-input);
      border: 2px solid var(--border);
      border-radius: 8px;
      color: var(--text-primary);
      font-family: inherit;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    select:focus, input[type="text"]:focus {
      outline: none;
      border-color: var(--primary);
      background: #2a3147;
      box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.1);
    }

    .filter-buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 10px 18px;
      background: var(--bg-input);
      border: 2px solid var(--border);
      color: var(--text-primary);
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
      font-family: inherit;
      font-size: 0.85rem;
    }

    .filter-btn:hover {
      border-color: var(--primary);
      background: var(--border);
    }

    .filter-btn.active {
      background: var(--primary);
      color: #191d34;
      border-color: var(--primary);
    }

    /* News Grid */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
    }

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

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(255, 204, 0, 0.2);
      border-color: var(--primary);
    }

    .card.high-impact {
      border: 2px solid var(--error);
      background: linear-gradient(135deg, #1a1d2e 0%, #2a1d2e 100%);
    }

    .card.high-impact::before {
      content: '⚠️ کاریگەری بەرز';
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--error);
      color: white;
      padding: 4px 10px;
      border-radius: 15px;
      font-size: 0.7rem;
      font-weight: 700;
    }

    .card h2 {
      font-size: 1.2rem;
      margin-bottom: 8px;
      color: var(--primary);
      font-weight: 700;
    }

    .card-subtitle {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin-bottom: 12px;
    }

    .stars {
      color: var(--primary);
      font-size: 1.1rem;
      margin-bottom: 12px;
    }

    .card-info {
      margin: 10px 0;
      padding: 10px;
      background: var(--bg-input);
      border-radius: 8px;
      font-size: 0.85rem;
    }

    .card-info.type {
      border-right: 3px solid var(--primary);
    }

    .card-info.effect {
      border-right: 3px solid var(--success);
      color: var(--text-primary);
      font-weight: 600;
    }

    .card-info.desc {
      background: rgba(255, 204, 0, 0.05);
      border-right: 3px solid var(--border);
      color: var(--text-secondary);
      line-height: 1.5;
    }

    /* Warning Box */
    .warning-box {
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid var(--error);
      border-radius: 12px;
      padding: 18px;
      margin-bottom: 25px;
    }

    .warning-box h3 {
      color: var(--error);
      font-size: 1rem;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .warning-box p {
      color: var(--text-secondary);
      line-height: 1.5;
      font-size: 0.9rem;
    }

    /* Animations */
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

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

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

    /* Responsive Design */
    @media (max-width: 968px) {
      .desk-header h1 {
        font-size: 2rem;
      }

      .tab-navigation {
        flex-direction: column;
      }

      .tab-btn {
        min-width: auto;
      }

      .widget-grid {
        grid-template-columns: 1fr;
      }

      .sessions-grid {
        grid-template-columns: 1fr;
      }

      .stats-bar {
        grid-template-columns: repeat(2, 1fr);
      }

      .news-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .trading-desk-wrapper {
        padding: 15px;
      }

      .desk-header h1 {
        font-size: 1.6rem;
      }

      .stats-bar {
        grid-template-columns: 1fr;
      }

      .widget-container {
        padding: 20px;
      }
    }
  
    /* ========== PREMIUM FEATURES - NEW ADDITIONS ========== */
    
    /* Animated Background Particles */
    .particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
      opacity: 0.15;
    }

    .particle {
      position: absolute;
      background: var(--primary);
      border-radius: 50%;
      animation: float 20s infinite ease-in-out;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) translateX(0); }
      25% { transform: translateY(-100px) translateX(50px); }
      50% { transform: translateY(-50px) translateX(-50px); }
      75% { transform: translateY(-150px) translateX(100px); }
    }

    /* Glassmorphism Enhancement */
    .desk-header {
      background: var(--glass-bg) !important;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .desk-header h1 {
      animation: shimmer 3s infinite;
      background-size: 200% auto;
    }

    @keyframes shimmer {
      0%, 100% { background-position: 0% center; }
      50% { background-position: 100% center; }
    }

    /* Settings & Sound Buttons */
    .settings-btn, .sound-toggle {
      position: fixed;
      z-index: 1000;
      background: rgba(26, 29, 46, 0.9);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 204, 0, 0.2);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.5rem;
    }

    .settings-btn {
      top: 20px;
      left: 20px;
      animation: rotate 20s linear infinite;
    }

    .sound-toggle {
      bottom: 20px;
      left: 20px;
    }

    .settings-btn:hover, .sound-toggle:hover {
      transform: scale(1.1);
      border-color: var(--primary);
      box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
    }

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

    .sound-toggle.muted {
      opacity: 0.5;
    }

    /* Quick Actions Floating Panel */
    .quick-actions-panel {
      position: fixed;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 999;
      background: rgba(26, 29, 46, 0.9);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 204, 0, 0.2);
      border-radius: 20px;
      padding: 15px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      animation: slideInRight 0.6s ease;
    }

    @keyframes slideInRight {
      from { opacity: 0; transform: translateY(-50%) translateX(-50px); }
      to { opacity: 1; transform: translateY(-50%) translateX(0); }
    }

    .quick-action-btn {
      width: 55px;
      height: 55px;
      background: var(--bg-gradient);
      border: 2px solid var(--border);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.5rem;
      position: relative;
    }

    .quick-action-btn:hover {
      transform: scale(1.15);
      border-color: var(--primary);
      box-shadow: 0 5px 20px rgba(255, 204, 0, 0.4);
    }

    .quick-action-btn .tooltip {
      position: absolute;
      right: 70px;
      background: var(--primary);
      color: #191d34;
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .quick-action-btn:hover .tooltip {
      opacity: 1;
    }

    /* Market Intelligence Dashboard */
    .intelligence-dashboard {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 15px;
      margin-bottom: 25px;
      animation: fadeInUp 0.6s ease 0.2s both;
    }

    .intel-card {
      background: rgba(26, 29, 46, 0.7);
      backdrop-filter: blur(10px);
      padding: 20px;
      border-radius: 15px;
      border: 2px solid rgba(255, 204, 0, 0.2);
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .intel-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .intel-card:hover::before {
      left: 100%;
    }

    .intel-card:hover {
      transform: translateY(-5px) scale(1.02);
      border-color: var(--primary);
      box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
    }

    .intel-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
    .intel-label { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 5px; }
    .intel-value { font-size: 1.3rem; font-weight: 700; color: var(--primary); }
    .intel-change { font-size: 0.9rem; margin-top: 5px; }
    .intel-change.up { color: var(--success); }
    .intel-change.down { color: var(--error); }
    .intel-change.positive { color: var(--success); }
    .intel-change.negative { color: var(--error); }

    /* Event Countdown Timer */
    .countdown-banner {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(255, 204, 0, 0.2));
      border: 2px solid var(--error);
      border-radius: 15px;
      padding: 20px;
      margin-bottom: 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
      animation: fadeInUp 0.6s ease 0.3s both;
    }

    .countdown-title {
      color: var(--error);
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .countdown-timer {
      display: flex;
      gap: 10px;
    }

    .countdown-unit {
      background: var(--bg-card);
      padding: 10px 15px;
      border-radius: 10px;
      text-align: center;
      min-width: 60px;
    }

    .countdown-number {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
      display: block;
    }

    .countdown-label {
      font-size: 0.75rem;
      color: var(--text-secondary);
    }

    /* Fear & Greed Index */
    .fear-greed-widget {
      background: rgba(26, 29, 46, 0.7);
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 204, 0, 0.2);
      border-radius: 15px;
      padding: 20px;
      margin-bottom: 25px;
    }

    .fear-greed-meter {
      position: relative;
      width: 200px;
      height: 100px;
      margin: 20px auto;
    }

    .meter-arc {
      width: 100%;
      height: 100%;
      border-radius: 200px 200px 0 0;
      background: linear-gradient(90deg, var(--error) 0%, #ff6b6b 25%, var(--primary) 50%, #51cf66 75%, var(--success) 100%);
      position: relative;
    }

    .meter-needle {
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 4px;
      height: 80px;
      background: white;
      transform-origin: bottom center;
      transform: translateX(-50%) rotate(0deg);
      transition: transform 1s ease;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    .meter-value {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
      margin-top: 10px;
    }

    .meter-label {
      text-align: center;
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    /* Notification Toast */
    .notification-toast {
      position: fixed;
      top: 100px;
      right: 20px;
      min-width: 300px;
      max-width: 400px;
      background: rgba(26, 29, 46, 0.95);
      backdrop-filter: blur(10px);
      border: 2px solid var(--primary);
      border-radius: 15px;
      padding: 20px;
      z-index: 9999;
      transform: translateX(450px);
      transition: transform 0.4s ease;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .notification-toast.show {
      transform: translateX(0);
    }

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

    .notification-title {
      color: var(--primary);
      font-weight: 700;
      font-size: 1.1rem;
    }

    .notification-close {
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--text-secondary);
      transition: color 0.3s;
    }

    .notification-close:hover {
      color: var(--error);
    }

    .notification-body {
      color: var(--text-primary);
      line-height: 1.5;
    }

    .notification-time {
      color: var(--text-secondary);
      font-size: 0.85rem;
      margin-top: 8px;
    }

    /* Trader's Workspace Modal */
    .workspace-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(5px);
      z-index: 9998;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .workspace-modal.show {
      display: flex;
    }

    .workspace-content {
      background: var(--bg-card);
      border: 2px solid var(--primary);
      border-radius: 20px;
      padding: 30px;
      max-width: 700px;
      width: 100%;
      max-height: 80vh;
      overflow-y: auto;
      animation: scaleIn 0.3s ease;
    }

    @keyframes scaleIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

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

    .workspace-header h2 {
      color: var(--primary);
      font-size: 1.8rem;
    }

    .workspace-close {
      font-size: 2rem;
      cursor: pointer;
      color: var(--text-secondary);
      transition: color 0.3s;
    }

    .workspace-close:hover {
      color: var(--error);
    }

    .workspace-section {
      margin-bottom: 25px;
    }

    .workspace-section h3 {
      color: var(--primary);
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .workspace-textarea {
      width: 100%;
      min-height: 120px;
      background: var(--bg-input);
      border: 2px solid var(--border);
      border-radius: 10px;
      padding: 12px;
      color: var(--text-primary);
      font-family: inherit;
      font-size: 0.95rem;
      resize: vertical;
    }

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

    .workspace-btn {
      background: var(--primary);
      color: #191d34;
      padding: 12px 25px;
      border: none;
      border-radius: 10px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1rem;
      margin-top: 10px;
    }

    .workspace-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
    }

    .trade-idea-item {
      background: var(--bg-input);
      padding: 12px;
      border-radius: 8px;
      margin-bottom: 10px;
      border-left: 3px solid var(--primary);
    }

    .trade-idea-time {
      color: var(--text-secondary);
      font-size: 0.8rem;
      margin-bottom: 5px;
    }

    /* Stats Bar */
    .stats-bar {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 15px;
      margin-bottom: 25px;
      animation: fadeInUp 0.6s ease 0.2s both;
    }

    .stat-card {
      background: rgba(26, 29, 46, 0.7);
      backdrop-filter: blur(10px);
      padding: 20px;
      border-radius: 15px;
      border: 2px solid rgba(255, 204, 0, 0.2);
      text-align: center;
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
      box-shadow: 0 10px 30px rgba(255, 204, 0, 0.3);
    }

    .stat-icon { font-size: 2rem; margin-bottom: 8px; }
    .stat-label { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 5px; }
    .stat-value { font-size: 1.2rem; font-weight: 700; color: var(--primary); }

    /* Mobile Responsive Updates */
    @media (max-width: 968px) {
      .intelligence-dashboard { grid-template-columns: repeat(2, 1fr); }
      .quick-actions-panel { left: 10px; padding: 10px; }
      .quick-action-btn { width: 45px; height: 45px; font-size: 1.2rem; }
      .countdown-timer { justify-content: center; }
      .stats-bar { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 480px) {
      .intelligence-dashboard { grid-template-columns: 1fr; }
      .stats-bar { grid-template-columns: 1fr; }
      .notification-toast { right: 10px; left: 10px; min-width: auto; }
      .workspace-content { padding: 20px; }
    }


/* ===== Live Quotes (TradingView) ===== */
.live-quotes .intel-card{
  padding: 14px;
}
.live-quotes .intel-label{
  font-weight: 900;
  margin-bottom: 8px;
}
.live-quotes .tradingview-widget-container{
  width: 100%;
}
.live-quotes .tradingview-widget-container iframe{
  width: 100% !important;
  height: 56px !important;
}
