/* Header styles */
header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    background: rgba(10,14,26,0.5);
    animation: slideDown 0.6s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .headerLeft {
    flex: 1;
    min-width: 300px;
  }
  
  h1 {
    font-size: 28px;
    margin: 0 0 10px;
    font-weight: 700;
    background: linear-gradient(135deg, #6c9cff 0%, #ffd166 50%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
  }
  
  .headerRight {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .islamicNamesHeader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Scheherazade New', 'Amiri', serif;
    font-size: 24px;
    font-weight: 700;
    animation: fadeInOut 8s ease-in-out infinite;
    white-space: nowrap;
    direction: rtl;
    padding: 20px 24px;
    background: var(--panel);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.2);
    min-width: 280px;
    height: 100%;
  }
  
  #allahNameDisplay {
    background: linear-gradient(135deg, #6c9cff 0%, #ffd166 50%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
  }
  
  #prophetNameDisplay {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffd166 50%, #6c9cff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite reverse;
    background-size: 200% auto;
  }
  
  .islamicNamesHeader span:nth-child(2) {
    color: var(--highlight);
    text-shadow: 0 0 15px rgba(255,209,102,0.8);
  }
  
  .hijriDisplay {
    background: var(--panel);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 12px 16px;
    text-align: right;
    direction: rtl;
    animation: fadeIn 0.8s ease;
  }
  
  .hijriMonth {
    font-family: 'Amiri', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--highlight);
    margin-bottom: 2px;
    text-shadow: 0 2px 8px rgba(255,209,102,0.4);
  }
  
  .hijriDate {
    font-family: 'Amiri', serif;
    font-size: 11px;
    color: var(--muted);
  }
  
  .currentTimeDisplay {
    background: var(--panel);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    padding: 12px 20px;
    animation: fadeIn 0.8s ease 0.2s both;
    text-align: center;
    min-width: 180px;
  }
  
  .dottedTime {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    gap: 3px;
  }
  
  .timeDigit {
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }
  
  .hourDigit {
    color: #ff6b9d;
    text-shadow: 0 0 20px rgba(255,107,157,0.6);
  }
  
  .minuteDigit {
    color: #6c9cff;
    text-shadow: 0 0 20px rgba(108,156,255,0.6);
  }
  
  .secondDigit {
    color: #ffd166;
    text-shadow: 0 0 20px rgba(255,209,102,0.6);
  }
  
  .colon {
    color: var(--muted);
  }
  
  .dateRow {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
  }
  
  .gregorianDate, .hijriDateSmall {
    font-size: 10px;
    color: var(--muted);
    padding: 3px 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
  }
  
  .gregorianDate {
    font-family: var(--mono);
    font-weight: 600;
  }
  
  .hijriDateSmall {
    font-family: 'Amiri', serif;
    direction: rtl;
    font-weight: 700;
  }
  