/* ================= Reset ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* ================= Background ================= */
.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

/* X Shape */
.diagonal {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
}

/* أخضر زيتي غامق */
.d1 {
  background: linear-gradient(
    135deg,
    #1b2d1b 50%,
    transparent 50%
  );
}

/* أخضر زيتوني */
.d2 {
  background: linear-gradient(
    315deg,
    #556b2f 50%,
    transparent 50%
  );
}

/* ================= Center Box ================= */
.center-box {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= Content Box ================= */
.box-content {
  width: 420px;
  max-height: 90vh;
  height: 1500px;
  background: rgba(27, 45, 27, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 30px;
  color: #f8fafc;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(234, 179, 8, 0.2);
}

/* ================= Scrollbar ================= */
.box-content::-webkit-scrollbar {
  width: 6px;
}

.box-content::-webkit-scrollbar-track {
  background: transparent;
}

.box-content::-webkit-scrollbar-thumb {
  background: linear-gradient(#6b8e23, #556b2f);
  border-radius: 10px;
}

/* ================= Typography ================= */
.box-content h1 {
  margin-bottom: 20px;
  color: #eab308; /* ذهبي رمضاني */
  text-align: center;
}

.box-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #f1f5f9;
}

/* ================= Responsive ================= */
@media (max-width: 600px) {
  .box-content {
    width: 90%;
    max-height: 75vh;
    padding: 20px;
  }
}
