:root {
      --primary: #ffcc00;
      --primary-dark: #e6b800;
      --bg-dark: #0a0e1a;
      --bg-card: #141824;
      --bg-card-hover: #1a1f2e;
      --text-primary: #ffffff;
      --text-secondary: #a0a8b8;
      --border: #2a3142;
      --success: #00ff88;
      --info: #00e6e6;
    }

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

    body {
      background: linear-gradient(135deg, var(--bg-dark) 0%, #0f1420 100%);
      color: var(--text-primary);
      font-family: 'Tajawal', 'Noto Kufi Arabic', sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.8;
      direction: rtl;
    }

    /* Navigation */
    nav {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      padding: 0;
      text-align: center;
      box-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    nav a {
      display: inline-block;
      margin: 0 15px;
      padding: 18px 25px;
      color: var(--bg-dark);
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
      border-bottom: 3px solid transparent;
    }

    nav a:hover {
      background: rgba(0,0,0,0.1);
      border-bottom-color: var(--bg-dark);
    }

    /* Content */
    .content {
      padding: 40px 30px;
      max-width: 1200px;
      margin: auto;
    }

    h1 {
      color: var(--primary);
      font-family: 'Amiri', serif;
      font-size: 2.5em;
      text-align: center;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
    }

    h2 {
      color: var(--primary);
      font-family: 'Amiri', serif;
      font-size: 2em;
      margin-bottom: 20px;
    }

    h3 {
      color: var(--primary);
      font-family: 'Amiri', serif;
      font-size: 1.5em;
    }

    p {
      color: var(--text-secondary);
      font-size: 1.1em;
      line-height: 1.9;
      margin-bottom: 20px;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
      padding: 60px 40px;
      border-radius: 20px;
      text-align: center;
      margin-bottom: 50px;
      border: 1px solid var(--border);
      box-shadow: 0 10px 40px rgba(0,0,0,0.5);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--info), var(--success));
      animation: shimmer 3s linear infinite;
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .hero p {
      font-size: 1.3em;
      max-width: 800px;
      margin: 0 auto;
    }

    /* Section Card */
    .section {
      background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
      padding: 35px;
      border-radius: 15px;
      margin-top: 30px;
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .section:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,0.4);
      transform: translateY(-3px);
    }

    ul {
      list-style: none;
      margin: 20px 0;
    }

    ul li {
      padding: 12px 0;
      padding-right: 30px;
      position: relative;
      color: var(--text-secondary);
      font-size: 1.1em;
    }

    ul li::before {
      content: '◀';
      position: absolute;
      right: 0;
      color: var(--primary);
      font-size: 1.2em;
    }

    /* Benefits Grid */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin: 30px 0;
    }

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

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

    .benefit-icon {
      font-size: 3em;
      margin-bottom: 15px;
      display: block;
    }

    .benefit-title {
      color: var(--primary);
      font-size: 1.3em;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .benefit-desc {
      color: var(--text-secondary);
      font-size: 1em;
      line-height: 1.7;
    }

    /* Stats Table */
    table {
      width: 100%;
      text-align: right;
      border-collapse: collapse;
      margin-top: 30px;
      background: var(--bg-dark);
      border-radius: 12px;
      overflow: hidden;
    }

    thead tr {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: var(--bg-dark);
    }

    th, td {
      padding: 15px;
      border-bottom: 1px solid var(--border);
    }

    tbody tr {
      transition: all 0.2s ease;
    }

    tbody tr:hover {
      background: var(--bg-card-hover);
    }

    tbody tr:nth-child(even) {
      background: rgba(255, 204, 0, 0.05);
    }

    .status-active {
      color: var(--success);
      font-weight: 700;
    }

    .status-pending {
      color: #ff9500;
      font-weight: 700;
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%);
      padding: 50px 30px;
      border-radius: 20px;
      text-align: center;
      margin-top: 50px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(30, 136, 229, 0.4);
    }

    .cta-section::before {
      content: '✈';
      position: absolute;
      font-size: 300px;
      opacity: 0.1;
      top: -50px;
      left: -50px;
      animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(10deg); }
    }

    .cta-section h2 {
      color: white;
      font-size: 2.2em;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }

    .cta-section p {
      color: white;
      font-size: 1.2em;
      margin-bottom: 30px;
      opacity: 0.95;
      position: relative;
      z-index: 1;
    }

    .telegram-button {
      display: inline-flex;
      align-items: center;
      gap: 15px;
      background: white;
      color: #0d47a1;
      padding: 20px 45px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 900;
      font-size: 1.3em;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
      position: relative;
      z-index: 1;
    }

    .telegram-button:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 6px 30px rgba(255, 255, 255, 0.5);
    }

    /* Step Wizard */
    .step-wizard {
      display: flex;
      justify-content: space-between;
      margin: 50px 0;
      position: relative;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .step-wizard::before {
      content: '';
      position: absolute;
      top: 25px;
      left: 25px;
      right: 25px;
      height: 3px;
      background: var(--border);
      z-index: 0;
    }

    .wizard-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 1;
      flex: 1;
    }

    .wizard-number {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--bg-dark);
      border: 3px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.3em;
      color: var(--text-secondary);
      margin-bottom: 12px;
      transition: all 0.3s ease;
    }

    .wizard-step.active .wizard-number {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-color: var(--primary);
      color: var(--bg-dark);
      box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
    }

    .wizard-label {
      font-size: 0.9em;
      color: var(--text-secondary);
      text-align: center;
      max-width: 100px;
    }

    .wizard-step.active .wizard-label {
      color: var(--primary);
      font-weight: 700;
    }

    /* Footer */
    footer {
      text-align: center;
      background: var(--bg-card);
      color: var(--text-secondary);
      padding: 30px 20px;
      font-size: 0.95em;
      margin-top: 50px;
      border-top: 2px solid var(--border);
    }

    footer a {
      color: var(--primary);
      text-decoration: none;
      margin: 0 12px;
      font-weight: 700;
      transition: all 0.2s ease;
    }

    footer a:hover {
      color: var(--info);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .content { padding: 20px 15px; }
      h1 { font-size: 2em; }
      h2 { font-size: 1.6em; }
      
      nav a {
        display: block;
        margin: 0;
        padding: 12px 20px;
      }
      
      .step-wizard {
        flex-direction: column;
        gap: 20px;
      }
      
      .step-wizard::before { display: none; }
      
      .benefits-grid {
        grid-template-columns: 1fr;
      }
      
      table {
        font-size: 0.9em;
      }
      
      th, td {
        padding: 10px 8px;
      }
    }

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

    .section, .benefit-card {
      animation: fadeInUp 0.6s ease-out backwards;
    }

    .section:nth-child(1) { animation-delay: 0.1s; }
    .section:nth-child(2) { animation-delay: 0.2s; }
    .section:nth-child(3) { animation-delay: 0.3s; }
    .section:nth-child(4) { animation-delay: 0.4s; }
