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

    :root {
      --primary: #ffcc00;
      --primary-dark: #e6b800;
      --bg-dark: #0f1219;
      --bg-card: #1a1d2e;
      --bg-input: #232940;
      --text-primary: #ffffff;
      --text-secondary: #a0aec0;
      --success: #10b981;
      --error: #ef4444;
      --border: #2d3748;
      --active: #22c55e;
    }

    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;
    }

    /* Header Styles */
    header {
      background: var(--primary);
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      box-shadow: 0 4px 20px rgba(255, 204, 0, 0.2);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    header img {
      height: 50px;
      transition: transform 0.3s ease;
    }

    header img:hover {
      transform: scale(1.05);
    }

    nav a {
      color: #191d34;
      text-decoration: none;
      margin: 0 12px;
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      right: 0;
      width: 0;
      height: 2px;
      background: #191d34;
      transition: width 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

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

    .page-header {
      text-align: center;
      margin-bottom: 40px;
      animation: fadeInDown 0.6s ease;
    }

    .page-header h1 {
      font-family: 'Noto Kufi Arabic', sans-serif;
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 10px;
      font-weight: 700;
    }

    .page-header p {
      color: var(--text-secondary);
      font-size: 1.1rem;
    }

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

    .clock-display {
      font-size: 3rem;
      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: 1.1rem;
      color: var(--text-secondary);
    }

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

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

    .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: 20px;
    }

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

    .session-status {
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.85rem;
      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.2rem;
      color: var(--primary);
      margin-bottom: 15px;
      font-weight: 600;
    }

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

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

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

    .pair-badge {
      background: var(--border);
      padding: 4px 10px;
      border-radius: 6px;
      font-size: 0.85rem;
      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.9rem;
      line-height: 1.6;
      margin-top: 10px;
    }

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

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

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

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

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

    /* Footer */
    footer {
      background: var(--bg-card);
      text-align: center;
      color: var(--text-secondary);
      padding: 30px;
      margin-top: 60px;
      border-top: 1px solid var(--border);
    }

    /* 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 pulse {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.7;
      }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
      }

      nav {
        margin-top: 15px;
        width: 100%;
      }

      nav a {
        display: inline-block;
        margin: 5px 8px;
      }

      .page-header h1 {
        font-size: 2rem;
      }

      .clock-display {
        font-size: 2rem;
      }

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

      .info-cards {
        grid-template-columns: 1fr;
      }

      .session-card {
        padding: 20px;
      }
    }
