body {
  background-color: rgb(0, 23, 8);
  color: #ffffff;
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  /* padding: 1.5rem; */
  display: flex;
  justify-content: center;
}

.container {
  max-width: 536px;
  width: 100%;
  background-image: url("images/main_bg_1.png");
  background-repeat: repeat;
  background-size: auto;
  background-attachment: fixed; 
  background-position: center;
  padding: 1.5rem;
  box-sizing: border-box;
}

.logo {
  display: block;
  margin: 0 auto 1rem;
  width: 160px;
}

.highlight {
  background: linear-gradient(90deg, #ffd700, #ff6f00);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  font-weight: bold;
  font-size: 1.3rem;
  text-align: center;
}

.card {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card p, .card ul {
  font-size: 0.875rem;
  line-height: 1.4;
}

.footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #ccc;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0 2rem;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #ffd700, transparent);
  margin: 0 1rem;
}

.section-label {
  font-weight: bold;
  color: #ffd700;
  font-size: 1.25rem;
  white-space: nowrap;
}

