body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #0a0a0a;
  color: #f4f4f4;
  text-align: center;
}

header {
  background: #111;
  padding: 1em 0;
}

header h1 {
  margin: 0;
  font-size: 2em;
}

nav a {
  margin: 0 10px;
  color: #bbb;
  text-decoration: none;
}

nav a:hover {
  color: #fff;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  background: rgba(0, 0, 0, 0.5); /* translucent overlay for readability */
  padding: 2em;
  border-radius: 10px;
}
.contribute {
  padding: 3em 1em;
  background: #181818;
  max-width: 800px;
  margin: 3em auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  text-align: left;
}
.donate-message {
  text-align: center;
  margin-bottom: 1em;
  font-style: italic;
  color: #ffd700;
}

.contribute h3 {
  text-align: center;
  color: #ffd700;
  margin-bottom: 1em;
}

.contribute ul {
  list-style: none;
  padding-left: 0;
}

.contribute li {
  margin: 0.5em 0;
}

.donate-button {
  background: #ffd700;
  border: none;
  padding: 0.8em 1.5em;
  font-size: 1.1em;
  border-radius: 6px;
  cursor: pointer;
  display: block;
  margin: 2em auto 0;
  color: #000;
  font-weight: bold;
}

.donate-button:hover {
  background: #ffea55;
}
.blog-box {
  max-width: 800px;
  margin: 1.5em auto;
  padding: 1.5em;
  background-color: #f9f9f9;
  border-left: 4px solid #444;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  line-height: 1.6;
  color: #222; /* <<< ensures dark text */
}


footer {
  margin-top: 2em;
  padding: 1em;
  background: #111;
}


