body {
    margin: 0;
    font-family: 'Vazirmatn', sans-serif;
    background-color: #f8f9fa;
}
  
/* سکشن‌ها */
.section {
    display: none;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}
  
.section.active {
    display: flex;
}
  
/* بک‌گراند همه صفحات بجز خانه */
#resultSection,
#historySection,
#aboutSection {
    background: url('bg1.jpg') no-repeat center center;
    background-size: cover;
}
  
/* صفحه خانه */
.home-section {
    background: #fff;
}
  
/* کارت */
.result-card {
    background: rgba(255, 255, 255, 0);
  border-radius: 15px;
  border: 1px solid rgba(0,0,0,0);
  max-width: 800px;
  width: 100%;
  box-shadow: unset;
    max-width: 800px;
    width: 100%;
}
  
/* منوی پایین */
.bottom-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    gap: 8px;
    padding: 10px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
}
  
.bottom-menu button {
    flex: 1;
    font-size: 14px;
}

/* استایل‌های جدید برای قاب قرآن */
.quran-frame-container {
    display: flex;
  flex-direction: column;
  align-items: center;
  background: #fbf9f9;
  margin-top: 30px;
  border-radius: 15px;
  padding: 17px;
}

.quran-frame {
    position: relative;
    width: 100%;
    max-width: 600px;
    /* تنظیمات پیش‌فرض برای دسکتاپ */
    background-image: url('desk-border.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 5% 4%; 
    margin-bottom: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.image-wrapper-content img {
    width: 46%;
    margin: 0 1%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* ترجمه */
.translation-container {
    width: 100%;
    text-align: justify;
}

/* --- تغییرات جدید --- */
.surah-translation {
    height: 300px; /* ارتفاع ثابت ۳۰۰ پیکسل */
    overflow-y: auto; /* فعال کردن اسکرول عمودی */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    margin-top: 15px;
    scroll-behavior: smooth; /* اسکرول نرم */
}

.surah-translation p {
    position: relative;
    padding-right: 25px; 
    line-height: 2.2;
    transition: background-color 0.5s ease;
    margin-bottom: 10px;
}

/* شماره آیه */
.surah-translation p::before {
    content: attr(data-verse);
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.8em;
    color: #777;
    font-weight: bold;
}

/* هایلایت آیه */
.verse-highlight {
    background-color: #fff9c4 !important; /* زرد کمرنگ */
    border-radius: 4px;
}
/* ------------------- */

/* تاریخچه */
.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
.history-actions i {
    cursor: pointer;
    margin-right: 12px;
    font-size: 16px;
}
  
.history-actions i:hover {
    opacity: 0.7;
}
  
/* موبایل */
@media (max-width: 768px) {
    .quran-frame {
        background-image: url('app-border.jpg');
        padding: 4% 3%;
    }

    .image-wrapper-content img {
     width: 100%;
    margin: 4px;
    padding: 14px;
    }
    
    .image-wrapper-content img:nth-child(2) {
        display: none;
    }
}