/* style.css */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
}

header, footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-weight: 600;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #ddd;
  margin: 0 12px;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

nav a:hover {
  background-color: #333;
  color: #fff;
}

main {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 15px;
}

h1, h2, h3 {
  font-weight: 600;
}

/* ✅ Stylish Game Box */
#game-box {
  margin: 40px auto;
  width: 280px;
  height: 280px;
  background-color: #007bff;
  color: white;
  font-size: 26px;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.15);
  user-select: none;
  transition: background-color 0.3s ease;
}

/* ✅ Result text under game */
#game-result,
#result {
  margin-top: 22px;
  font-weight: 600;
  font-size: 20px;
  min-height: 26px;
  text-align: center;
}

/* ✅ Paragraph styling */
article p {
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 16px;
}

/* ✅ List styling */
article ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
article ul li {
  margin-bottom: 10px;
}

/* ✅ Stylish Headings */
article h1 {
  background: #007bff;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 26px;
  margin-top: 30px;
}

article h2 {
  background: #17a2b8;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 22px;
  margin-top: 25px;
}

article h3 {
  background: #ffc107;
  color: #222;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 18px;
  margin-top: 20px;
}

/* ✅ Footer Text */
footer p {
  font-size: 14px;
  margin: 0;
}
