.quran-hero{
  background:linear-gradient(135deg,#006B3F 0%, #005332 45%, #00A86B 100%);
  color:#fff;
  padding:70px 0 55px;
}
.quran-hero-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.quran-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  font-size:13px;
  font-weight:700;
  margin-bottom:12px;
}
.quran-hero h1{
  font-size:42px;
  margin-bottom:10px;
  line-height:1.2;
}
.quran-hero p{
  font-size:17px;
  opacity:.95;
}
.quran-section{
  padding:45px 0 70px;
}
.section-head{
  text-align:center;
  margin-bottom:25px;
}
.section-head h2{
  font-size:32px;
  margin-bottom:8px;
}
.section-head p{
  color:#64748b;
}
.surah-grid{
  display:grid;
  grid-template-columns:repeat(10, 1fr);
  gap:14px;
}
.surah-card-wrap{
  position:relative;
}
.surah-card{
  display:block;
  background:#fff;
  border-radius:18px;
  padding:14px;
  box-shadow:0 10px 25px rgba(0,0,0,.07);
  min-height:140px;
  transition:.25s ease;
  border:1px solid #eef2ee;
}
.surah-card:hover{
  transform:translateY(-4px);
}
.surah-top{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-bottom:12px;
}
.surah-no{
  min-width:34px;
  height:34px;
  border-radius:10px;
  background:#eef7f1;
  color:#006B3F;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:14px;
}
.surah-name-block h3{
  font-size:15px;
  margin-bottom:4px;
  color:#173b2d;
  line-height:1.3;
}
.arabic-name{
  font-size:18px;
  font-weight:700;
  color:#006B3F;
  line-height:1.4;
}
.surah-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:13px;
  color:#64748b;
}
.play-btn{
  position:absolute;
  right:10px;
  bottom:10px;
  width:36px;
  height:36px;
  border:none;
  border-radius:50%;
  background:#006B3F;
  color:#fff;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,107,63,.25);
}
.play-btn:hover{
  background:#004f2f;
}
.audio-player-bar{
  display:none;
  position:sticky;
  bottom:0;
  z-index:999;
  background:#fff;
  border-top:1px solid #e5e7eb;
  box-shadow:0 -8px 25px rgba(0,0,0,.06);
  padding:12px 0;
}
.audio-player-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  flex-wrap:wrap;
}
.audio-player-inner audio{
  width:420px;
  max-width:100%;
}
.ayah-list{
  display:grid;
  gap:18px;
}
.ayah-card{
  background:#fff;
  border-radius:20px;
  padding:20px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}
.ayah-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}
.ayah-number{
  font-weight:700;
  color:#006B3F;
}
.ayah-play-btn{
  width:38px;
  height:38px;
  border:none;
  border-radius:50%;
  background:#006B3F;
  color:#fff;
  cursor:pointer;
}
.ayah-arabic{
  font-size:32px;
  line-height:2;
  text-align:right;
  margin-bottom:14px;
  font-weight:600;
  color:#173b2d;
}
.ayah-bangla{
  font-size:17px;
  line-height:1.9;
  color:#334155;
  background:#f8fbf9;
  border-radius:14px;
  padding:14px;
}
.arabic-inline{
  font-family:serif;
}
@media(max-width:1400px){
  .surah-grid{grid-template-columns:repeat(5,1fr)}
}
@media(max-width:1000px){
  .surah-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:700px){
  .surah-grid{grid-template-columns:repeat(2,1fr)}
  .quran-hero h1{font-size:30px}
  .ayah-arabic{font-size:24px}
}
@media(max-width:480px){
  .surah-grid{grid-template-columns:1fr}
}