/* Surah Yaseen Plugin Styles */
.surah-yaseen-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

/* Header Styles */
.surah-header {
  text-align: center;
  background: linear-gradient(135deg, #059669, #0d9488);
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

.arabic-title {
  font-family: "Amiri", "Times New Roman", serif;
  font-size: 3rem;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.surah-header h3 {
  margin: 10px 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.verse-count {
  margin: 10px 0 0 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Controls */
.surah-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.control-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.control-group label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  cursor: pointer;
}

.control-group select {
  padding: 5px 10px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  background: white;
}

.dark-mode-btn {
  padding: 8px 15px;
  background: #059669;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.dark-mode-btn:hover {
  background: #047857;
}

/* Search */
.search-container {
  margin-bottom: 30px;
}

#verse-search {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s;
}

#verse-search:focus {
  outline: none;
  border-color: #059669;
}

/* Bismillah */
.bismillah-container {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 2px solid #a7f3d0;
  border-radius: 15px;
  margin-bottom: 40px;
}

.bismillah-arabic {
  font-family: "Amiri", "Times New Roman", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #065f46;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bismillah-translation {
  color: #059669;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Verses */
.verse-item {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.verse-item:last-child {
  border-bottom: none;
}

.verse-number {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.verse-number-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #059669, #0d9488);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  border: 4px solid white;
}

.verse-arabic {
  text-align: right;
  direction: rtl;
  font-family: "Amiri", "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #1f2937;
}

.verse-transliteration {
  font-style: italic;
  color: #0d9488;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.6;
}

.verse-indonesian {
  color: #374151;
  line-height: 1.7;
}

/* Font Sizes */
.font-small .verse-arabic {
  font-size: 2rem;
}
.font-small .verse-transliteration,
.font-small .verse-indonesian {
  font-size: 0.9rem;
}

.font-medium .verse-arabic {
  font-size: 2.5rem;
}
.font-medium .verse-transliteration,
.font-medium .verse-indonesian {
  font-size: 1rem;
}

.font-large .verse-arabic {
  font-size: 3rem;
}
.font-large .verse-transliteration,
.font-large .verse-indonesian {
  font-size: 1.1rem;
}

.font-extra-large .verse-arabic {
  font-size: 3.5rem;
}
.font-extra-large .verse-transliteration,
.font-extra-large .verse-indonesian {
  font-size: 1.2rem;
}

/* Dark Mode */
.dark-mode {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
}

.dark-mode .surah-controls {
  background: #374151;
  border-color: #4b5563;
}

.dark-mode .bismillah-container {
  background: linear-gradient(135deg, #065f46, #047857);
  border-color: #059669;
}

.dark-mode .bismillah-arabic,
.dark-mode .bismillah-translation {
  color: white;
}

.dark-mode .verse-arabic {
  color: white;
}

.dark-mode .verse-transliteration {
  color: #5eead4;
}

.dark-mode .verse-indonesian {
  color: #d1d5db;
}

.dark-mode .verse-item {
  border-bottom-color: #4b5563;
}

.dark-mode #verse-search {
  background: #374151;
  border-color: #4b5563;
  color: white;
}

/* Loading */
.loading {
  text-align: center;
  padding: 40px;
  font-size: 1.2rem;
  color: #059669;
}

/* Scroll to top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #059669, #0d9488);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transition: all 0.3s;
  z-index: 1000;
}

.scroll-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .surah-yaseen-wrapper {
    padding: 15px;
  }

  .surah-controls {
    flex-direction: column;
    align-items: center;
  }

  .arabic-title {
    font-size: 2.5rem;
  }

  .verse-arabic {
    font-size: 2rem;
  }

  .bismillah-arabic {
    font-size: 2rem;
  }
}

/* Hidden elements */
.hidden {
  display: none !important;
}
