/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: url('/images/mainbg.png') no-repeat center center fixed;
  background-size: cover;
  color: #f5f5f5;
  padding: 2rem;
  line-height: 1.6;
}

header, section {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
}

p {
  font-size: 1.1rem;
  opacity: 0.85;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  display: inline-block;
  text-align: left;
}

ul li {
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  text-align: left;
  position: relative;
  line-height: 1.75;
}

ul li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0.35rem;
  font-size: 1rem;
}

.button:hover {
  background: #45a045;
}

.donate-button {
  margin-top: 1.2rem;
}

footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  text-align: center;
  opacity: 0.6;
}

footer a:hover {
  color: #00aaff;
}

form {
  margin-top: 1.2rem;
  display: inline-block;
}

.qr-code {
  margin-top: 1rem;
}

.qr-code img {
  margin-top: 0.5rem;
  width: 128px;
  height: 128px;
}

.screenshot-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.screenshot-grid a {
  display: inline-block;
}

.screenshot-grid img {
  max-width: 100%;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  transition: transform 0.2s ease;
  cursor: zoom-in;
}

.screenshot-grid img:hover {
  transform: scale(1.03);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
}

.lightbox:target {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
