/* Reset وتحسينات عامة */
body {
  margin: 0;
  padding: 0;
  font-family: 'Courier New', monospace;
  background-color: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
}

/* حاوية المحتوى */
.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* العنوان الرئيسي */
h1 {
  font-size: 2.8em;
  color: #00ff9f;
  text-shadow: 0 0 12px #00ff9f;
  margin-bottom: 0.3em;
}

/* العنوان الفرعي */
.subtitle {
  font-size: 1.3em;
  color: #999999cc;
  margin-bottom: 40px;
  font-style: italic;
}


.section {
  margin-bottom: 40px;
  padding: 25px 20px;
  border: 1px solid #222;
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 0 15px #00ff9f44;
  transition: box-shadow 0.3s ease;
}

.section:hover {
  box-shadow: 0 0 25px #00ff9faa;
}


.rank {
  color: #00ffd5;
  font-weight: bold;
}

ul, ol {
  padding-left: 1.2em;
}

li {
  margin-bottom: 8px;
}


.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #00ff9f;
  color: #000000;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  margin: 8px 0;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 3px 6px #00ff9f88;
}

.btn:hover {
  background-color: #00e68a;
  transform: scale(1.05);
  box-shadow: 0 6px 12px #00ff9fff;
  cursor: pointer;
}


footer {
  text-align: center;
  margin-top: 60px;
  color: #666;
  font-size: 0.9em;
  font-style: italic;
}


@media (max-width: 600px) {
  h1 {
    font-size: 2em;
  }

  .subtitle {
    font-size: 1.1em;
    margin-bottom: 30px;
  }

  .section {
    padding: 15px 15px;
    margin-bottom: 30px;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.9em;
  }
}
