* {
      margin: 0;
<link href="https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@400;700&display=swap" rel="stylesheet"/>
      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;
    }

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

    /* Header Styles */
    header {
      background: var(--primary);
      padding: 20px 30px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(255, 204, 0, 0.2);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    header h1 {
      color: #191d34;
      font-size: 1.5rem;
      font-weight: 700;
    }

    /* Main Container */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 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;
    }

    #last-updated {
      text-align: center;
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin-bottom: 30px;
    }

    /* Filter Section */
    .filter-section {
      background: var(--bg-card);
      padding: 30px;
      border-radius: 20px;
      margin-bottom: 40px;
      border: 1px solid var(--border);
      animation: fadeInUp 0.6s ease;
    }

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

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

    select, input[type="text"] {
      width: 100%;
      padding: 12px 15px;
      background: var(--bg-input);
      border: 2px solid var(--border);
      border-radius: 10px;
      color: var(--text-primary);
      font-family: inherit;
      font-size: 1rem;
      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);
    }

    /* News Grid */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 25px;
      animation: fadeIn 0.8s ease-in-out;
    }

    .card {
      background: var(--bg-card);
      border-radius: 16px;
      padding: 25px;
      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: 20px;
      font-size: 0.75rem;
      font-weight: 700;
    }

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

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

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

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

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

    /* CTA Buttons */
    .cta-section {
      text-align: center;
      margin: 60px 0;
      animation: pulse 2s infinite;
    }

    .cta-btn {
      display: inline-block;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: #191d34;
      padding: 18px 40px;
      font-weight: 700;
      border-radius: 12px;
      text-decoration: none;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
    }

    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
    }

    /* FAQ Section */
    .faq-section {
      background: var(--bg-card);
      padding: 40px;
      border-radius: 20px;
      margin: 40px 0;
      border: 1px solid var(--border);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .faq-section:hover {
      border-color: var(--primary);
    }

    .faq-section h2 {
      color: var(--primary);
      font-size: 1.8rem;
      text-align: center;
      margin-bottom: 20px;
    }

    .faq-content {
      max-width: 900px;
      margin: 0 auto;
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-secondary);
      display: none;
    }

    .faq-content.show {
      display: block;
    }

    .faq-content p {
      margin-bottom: 20px;
    }

    .faq-content strong {
      color: var(--primary);
      display: block;
      margin-bottom: 8px;
      font-size: 1.1rem;
    }

    .faq-content a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
    }

    .faq-content a:hover {
      text-decoration: underline;
    }

    /* Footer */
    footer {
      background: #101321;
      color: var(--text-secondary);
      padding: 60px 20px 30px;
      text-align: center;
      margin-top: 60px;
    }

    .footer-cta {
      margin-bottom: 30px;
    }

    .footer-social {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin: 30px 0;
    }

    .footer-social a {
      color: var(--text-primary);
      text-decoration: none;
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }

    .footer-social a:hover {
      color: var(--primary);
      transform: scale(1.1);
    }

    .footer-copyright {
      font-size: 0.85rem;
      color: #666;
      margin-top: 20px;
    }

    /* Scroll to Top Button */
    .scroll-top {
      position: fixed;
      bottom: 30px;
      left: 30px;
      background: var(--primary);
      color: #191d34;
      border: none;
      padding: 14px 20px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
      transition: all 0.3s ease;
      z-index: 999;
    }

    .scroll-top:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
    }

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

    @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 slideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .container {
        padding: 20px 15px;
      }

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

      .filter-section {
        padding: 20px;
      }

      .filter-controls {
        grid-template-columns: 1fr;
      }

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

      .card {
        padding: 20px;
      }

      .faq-section {
        padding: 25px;
      }

      .scroll-top {
        bottom: 20px;
        left: 20px;
        padding: 12px 16px;
        font-size: 0.9rem;
      }
    }

.market-tabs-nav{background:rgba(26,31,56,0.98);backdrop-filter:blur(10px);border-bottom:2px solid rgba(255,215,0,0.2);padding:16px 0;margin-bottom:32px;position:sticky;top:0;z-index:1000;box-shadow:0 4px 12px rgba(0,0,0,0.3)}.market-tabs-container{max-width:1400px;margin:0 auto;padding:0 20px}.market-tabs-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:12px}.market-tab{display:flex;align-items:center;justify-content:center;gap:8px;padding:14px 20px;background:rgba(255,255,255,0.03);border:2px solid rgba(255,255,255,0.08);border-radius:12px;color:#b8bcc8;text-decoration:none;font-weight:600;font-size:15px;transition:all .3s cubic-bezier(.4,0,.2,1);font-family:'Noto Kufi Arabic',sans-serif}.market-tab:hover{background:rgba(255,215,0,0.08);border-color:rgba(255,215,0,0.3);color:#ffd700;transform:translateY(-2px)}.market-tab.active{background:linear-gradient(135deg,#ffd700,#ffa500);border-color:#ffd700;color:#000;box-shadow:0 4px 16px rgba(255,215,0,0.35);font-weight:700}@media(max-width:768px){.market-tabs-grid{grid-template-columns:repeat(2,1fr)}.market-tab{padding:12px 16px;font-size:14px}}@media(max-width:480px){.market-tabs-grid{grid-template-columns:1fr}}

.live-news-section {
  background: linear-gradient(135deg, rgba(26, 31, 56, 0.95), rgba(26, 31, 56, 0.85));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 32px;
  margin: 32px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.live-news-header {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.live-news-header h2 {
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 12px;
  font-family: 'Noto Kufi Arabic', sans-serif;
}

.live-news-header p {
  color: #b8bcc8;
  font-size: 16px;
  margin-bottom: 16px;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid rgba(255, 0, 0, 0.3);
  border-radius: 20px;
  color: #ff4444;
  font-weight: 700;
  font-size: 14px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #ff0000;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.tradingview-widget-container {
  background: rgba(0,0,0,0.2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .live-news-section {
    padding: 20px;
  }
  
  .live-news-header h2 {
    font-size: 24px;
  }
  
  .tradingview-widget-container {
    height: 500px !important;
  }
}

.educational-section-header {
  text-align: center;
  margin: 48px 0 32px;
  padding: 24px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 16px;
  border: 2px solid rgba(102, 126, 234, 0.3);
}

.educational-section-header h2 {
  font-size: 28px;
  color: #667eea;
  margin-bottom: 12px;
  font-family: 'Noto Kufi Arabic', sans-serif;
}

.educational-section-header p {
  color: #b8bcc8;
  font-size: 15px;
}
