*{
  transition: all .3s;
    font-family: 'Noto Nastaliq Urdu', serif;
}

  ::selection{
  background: transparent;
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 12px;             
  height: 12px;             
  background-color: #f0f0f0; 
}

::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #84dc01a9;  
  border: 3px solid #f0f0f0;    
}

::-webkit-scrollbar-thumb:hover {
  background-color: #5cbf00;
}


  body {
    background-color: #252525;
    color: white;
    font-family: 'Scheherazade New', serif;
    margin: 0;
    padding: 20px;
    overflow-y: scroll;
  }
  h2.main-title {
    color: #ffffff;
    margin-bottom: 70px;
    font-size: clamp(28px, 5vw, 48px);
    line-height: 150%;
    border-bottom: solid 2px #c1c1c1;
    width: fit-content;
    text-wrap: nowrap;
    text-align: center;
    font-weight: 700;
    font-family: 'Noto Nastaliq Urdu', serif;
  }
  .container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .surah-box {
    background-color: #212224c5;
    padding: 15px 20px;
    border-radius: 8px;
    flex: 1 1 calc(33% - 30px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: solid 3px #373737;
    transition: background 0.3s, border-color 0.3s;
  }
  .surah-box:hover {
    background-color: #2122244b;
    border-color: #ffffff;
  }
  .surah-box > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .name {
    font-size: 1.4em;
    font-weight: bold;
    font-family: 'Noto Nastaliq Urdu', serif;
  }
  .english-name {
    font-family: Arial, sans-serif;
    font-size: 0.85em;
    color: #ccc;
    font-style: italic;
    user-select: none;
  }
  .ayahs-count {
    font-size: 0.9em;
    color: #aaa;
  }
  .number {
    background-color: #222930;
    color: white;
    padding: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    font-size: 1.1em;
    font-weight: bold;
    user-select: none;
  }

  #popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(20, 20, 20);
    color: #f0f0f0;
    max-width: 420px;
    max-height: 95vh;
    overflow-y: auto;
    padding: 30px 30px 40px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgb(0, 0, 0);
    z-index: 9999;
    display: none;
    font-size: 1.15em;
    line-height: 1.4;
    font-family: 'Scheherazade New', serif;
  }
  #popup::-webkit-scrollbar{
      display: none;
  }

  #popup h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.3em;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 8px #ffffffaa;
  }
  #popup .translate-btn {
    display: block;
    margin: 10px auto 25px auto;
    padding: 10px 30px;
    background: #313131;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1em;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    user-select: none;
    font-family: 'Noto Nastaliq Urdu', serif;
  }
  #popup .translate-btn:hover {
    background: #ffffff;
    color: #000;
    transform: scale(1.05);
  }
  #popup .translate-btn:active {
    transform: scale(0.95);
  }
  #popup p.ayah {
    margin: 35px 0 4px 0;
    padding: 8px 15px;
    border-left: 5px solid #ffffff;
    background: rgba(104, 104, 104, 0.1);
    border-radius: 8px;
    font-family: 'Noto Nastaliq Urdu', serif;
    line-height: 100px;

  }
  #popup p.translation {
    margin: 0 0 12px 25px;
    font-size: 0.9em;
    color: #ddd;
    display: none;
    font-family: 'Noto Nastaliq Urdu', serif;
  }
  #popup button.close-btn {
    display: block;
    margin: 30px auto 0 auto;
    padding: 8px 165px;
    background: #373737;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: 0 6px 12px rgba(44, 44, 44, 0.6);
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
    user-select: none;
    font-family: 'Noto Nastaliq Urdu', serif;
  }
  #popup button.close-btn:hover {
    background: #ffffff;
    color: #000;
    transform: scale(1.05);
  }
  #popup button.close-btn:active {
    transform: scale(0.95);
  }
  @media (max-width: 992px) {
    .surah-box {
      flex: 1 1 calc(50% - 30px);
    }
  }
  @media (max-width: 600px) {
    .surah-box {
      flex: 1 1 100%;
    }
    h2.main-title {
      margin-bottom: 40px;
    }
  }
