/* Google Fonts Import: Gaming fonts ke liye (Orbitron & Rajdhani) */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@400;500;600&display=swap');

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0b0c10;
  color: #c5c6c7;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.6;
  font-size: 18px;
}


/* Main Container for Pages */
.page-container {
  max-width: 900px;
  margin: 100px auto 50px;
  padding: 40px;
  background: #121418;
  border-radius: 12px;
  border: 1px solid #1f2833;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Headings */
h1 {
  font-family: 'Orbitron', sans-serif;
  color: #c55b20;
  text-align: center;
  margin-bottom: 10px;
  font-size: 2.5rem;
  text-shadow: 0 0 10px rgba(197, 91, 32, 0.5);
}

.last-updated {
  text-align: center;
  color: #c55b20;
  font-size: 0.9rem;
  margin-bottom: 40px;
  font-weight: 600;
}

h2 {
  font-family: 'Orbitron', sans-serif;
  color: #c55b20;
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  border-bottom: 1px solid #1f2833;
  padding-bottom: 5px;
}

/* Paragraphs & Lists */
p {
  margin-bottom: 15px;
}

.page-container ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-container ul li {
  margin-bottom: 10px;
}

strong {
  color: #fff;
}

em {
  color: #ff4500;
  /* Reddish orange for warnings/exceptions */
  font-style: normal;
}



/* Mobile Responsiveness (Phone par acha dikhne ke liye) */
@media (max-width: 768px) {
  .page-container {
    margin: 20px;
    padding: 25px;
  }

  h1 {
    font-size: 2rem;
  }
}