    :root {
      --primary: #0B3B24;
      --primary-light: #e8f5e9;
      --accent: #D4AF37;
      --text-dark: #212529;
      --bg-light: #f8f9fa;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: var(--bg-light);
      padding: 0;
    }

    header {
      background-color: var(--primary);
      color: #ffffff;
      padding: 1.5rem 1rem;
      text-align: center;
    }

    header h1 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    header p {
      font-size: 0.95rem;
      color: var(--accent);
    }

    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 1.25rem 1rem;
    }

    .audio-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 1.25rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .audio-card h2 {
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
      color: var(--primary);
    }

    audio {
      width: 100%;
      margin-top: 0.5rem;
    }

    .content-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      margin-bottom: 1.5rem;

    }
	
	  .content-quran{
      background: #ffffff;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      margin-bottom: 1.5rem;
	  display: flex;
	  flex-direction: column; /* Stacks children vertically */
	  align-items: center;    /* Centers images horizontally */
	  gap: 1.5rem;            /* Clean, modern vertical spacing (no <br> needed) */
	  width: 100%;
    }

    .content-card h2 {
      color: var(--primary);
      font-size: 1.3rem;
      margin-bottom: 0.75rem;
    }

    .meta-info {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 1rem;
    }

    .badge {
      background: var(--primary-light);
      color: var(--primary);
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
    }

    /* Arabic Styling */
    .arabic-text {
      font-family: 'Amiri', serif;
      font-size: 1.8rem;
      line-height: 2.2;
      text-align: right;
      direction: rtl;
      margin: 1.5rem 0;
      color: #111111;
    }

    .related-section {
      background: #ffffff;
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }

    .related-section h3 {
      font-size: 1.1rem;
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .surah-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
      gap: 0.75rem;
    }

    .surah-chip {
      display: block;
      text-align: center;
      background: var(--bg-light);
      color: var(--text-dark);
      text-decoration: none;
      padding: 0.6rem;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      border: 1px solid #e0e0e0;
      transition: all 0.2s ease;
    }

    .surah-chip:hover, .surah-chip:active {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
    }
	
	.imgqu{
	width:100%;
	
	}

    @media (max-width: 480px) {
      header h1 {
        font-size: 1.35rem;
      }
      .arabic-text {
        font-size: 1.5rem;
        line-height: 2rem;
      }
    }