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

    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 */
    .calendar-wrapper {
      max-width: 1600px;
      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;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }

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

    .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);
      box-shadow: 0 10px 30px rgba(255, 204, 0, 0.15);
    }

    .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.7;
      font-size: 0.95rem;
    }

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

    .info-card li {
      margin: 8px 0;
      line-height: 1.5;
    }

    /* Calendar Container */
    .calendar-container {
      background: var(--bg-card);
      border-radius: 20px;
      padding: 30px;
      border: 1px solid var(--border);
      animation: fadeInUp 0.8s ease;
      margin-bottom: 40px;
    }

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

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

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

    .filter-btn {
      padding: 10px 20px;
      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.9rem;
    }

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

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

    /* TradingView Widget Container */
    .tradingview-widget-container {
      min-height: 600px;
      border-radius: 12px;
      overflow: hidden;
    }

    /* Warning Box */
    .warning-box {
      background: rgba(239, 68, 68, 0.1);
      border: 1px solid var(--error);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 30px;
      animation: fadeInUp 0.7s ease;
    }

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

    .warning-box 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);
      }
    }

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

      .calendar-wrapper {
        padding: 20px 15px;
      }

      .calendar-container {
        padding: 20px;
      }

      .calendar-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .filter-buttons {
        width: 100%;
      }

      .filter-btn {
        flex: 1;
        min-width: 100px;
      }

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

    /* Toast Notification */
    .toast {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%) translateY(-100px);
      background: var(--success);
      color: white;
      padding: 15px 30px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 1000;
      font-weight: 600;
    }

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