/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #0f1a0f, #1f2d1f);
  color: #e0e0e0;
  line-height: 1.6;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
header {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #263a26;
  color: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 800px;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
}

/* Sections */
section {
  width: 100%;
  max-width: 800px;
  text-align: center;
  padding: 1.5rem;
  background-color: #1a2b1a;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  margin-bottom: 2rem;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #aaffaa;
}

section ul {
  list-style: none;
  padding-left: 0;
}

section ul li {
  margin: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

section ul li::before {

  position: absolute;
  left: 0;
}

/* Images */
section img {
  max-width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

label {
  font-weight: bold;
  color: #aaffaa;
}

input {
  padding: 0.5rem;
  border: 1px solid #555;
  border-radius: 4px;
  background-color: #0f1a0f;
  color: #e0e0e0;
  width: 100%;
  max-width: 400px;
}

button {
  padding: 0.75rem 1.5rem;
  background-color: #3b5f3b;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #2e4a2e;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #aaa;
  width: 100%;
  max-width: 800px;
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  input {
    max-width: 100%;
  }
}

a{
    text-decoration: none;
    color: #fff;
}

.download-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #444;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #666;
}

#status p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}
