/* ====== Global Styles ====== */

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  padding: 1rem;
  margin: 2rem auto;
  max-width: 800px;
  line-height: 1.6;
}

h1, h2 {
  text-align: center;
}

footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

nav {
  text-align: center;
  margin-top: 2rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: underline;
  color: #0073e6;
}

/* ====== Homepage Styles (index.html) ====== */

p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.tool-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

a.tool-link {
  display: inline-block;
  text-decoration: none;
  background: #0073e6;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1.1rem;
  transition: background 0.3s;
}

a.tool-link:hover {
  background: #005bb5;
}

/* ====== Generator Page Styles (Powerball, MegaMillions, LuckyForLife) ====== */

.generator-container {
  max-width: 600px;
  background: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin: 2rem auto;
  padding: 1rem;
}

.numbers {
  font-size: 1.5rem;
  margin: 1rem 0;
  text-align: center;
}

button {
  display: block;
  margin: 1rem auto;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
}

/* ====== FAQ Page Styles ====== */

.faq-item {
  margin-bottom: 2rem;
}
