/* Basic styling for ZuckBucks page */

body {
  font-family: 'Courier New', monospace;
  background: #000;
  color: #00ff00;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: center;
  text-align: center;
}

header {
  margin-top: 50px;
}

.logo {
  width: 300px;   /* big logo */
  height: auto;
  margin-bottom: 20px;
}

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

p {
  font-size: 1.3rem;
  margin: 0.5rem 0 2rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.download-button, #aboutBtn {
  display: inline-block;
  padding: 16px 30px;
  font-size: 1.3rem;
  color: #000;
  background: #00ff00;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.download-button:hover, #aboutBtn:hover {
  background: #00cc00;
}

.instructions {
  max-width: 500px;
  text-align: left;
  margin-top: 30px;
}

.instructions h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.instructions ol li {
  margin: 10px 0;
}

footer {
  margin-top: auto;
  padding: 20px 0;
}

footer a {
  color: #00ff00;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
}

.modal-content {
  background-color: #000;
  margin: 10% auto;
  padding: 30px;
  border: 1px solid #00ff00;
  width: 90%;
  max-width: 800px;
  color: #00ff00;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 10px;
}

.modal-content h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
}

.close {
  color: #00ff00;
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #00cc00;
}
