* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #d9fdd3;
  font-family: 'Courier New', monospace;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  border-bottom: 1px solid rgba(0, 255, 153, 0.3);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 60px;
  filter: drop-shadow(0 0 8px #00ff99);
}

.title {
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #00ff99;
  text-shadow: 0 0 8px #00ff99;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #00ff99;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  color: #000;
  background: #00ff99;
  padding: 4px 8px;
  border-radius: 5px;
  box-shadow: 0 0 10px #00ff99;
}

.main-section {
  flex-grow: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

.background-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.20;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  color: #00ff99;
  text-shadow: 0 0 10px #00ff99;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.content p {
  font-size: 1.1rem;
  color: #b8fcd9;
}

.footer {
  border-top: 1px solid rgba(0, 255, 153, 0.3);
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.85);
  color: #00ff99;
  font-size: 0.9rem;
}

.footer .contract {
  margin-bottom: 10px;
}

.footer .contract a {
  text-decoration: none;
  color: #00ff99;
  border: 1px solid #00ff99;
  padding: 4px 10px;
  border-radius: 8px;
  transition: 0.3s;
}

.footer .contract a:hover {
  background-color: #00ff99;
  color: #000;
  box-shadow: 0 0 10px #00ff99;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
  }
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-links a {
    margin: 5px 10px;
  }
  .content h1 {
    font-size: 1.8rem;
  }
}


/* --- v10 Mobile Footer Fix --- */
.footer .contract {
  word-wrap: break-word;
  word-break: break-all;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer .contract a {
  display: inline-block;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-all;
  line-height: 1.3;
  padding: 6px 10px;
  font-size: 0.85rem;
  max-width: 100%;
}

@media (max-width: 768px) {
  .footer .contract a {
    font-size: 0.8rem;
    padding: 4px 6px;
    line-height: 1.2;
    max-width: 95%;
    word-wrap: break-word;
  }
}
