body {
  font-family: 'C64 Pro Mono', 'Courier New', Courier, monospace;
}

h1, h2, .ftn-title {
  font-family: 'C64 Pro', sans-serif;
}

/* === Layout === */
.form-wrapper {
  padding: 2em;
  background-color: #000;
  color: #ffcc00;
  text-shadow: 0 0 5px #f60;
  max-width: 800px;
  width: 100%;              /* NEW: ensures full width on mobile */
  box-sizing: border-box;   /* NEW: includes padding in width calc */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ftn-img {
  width: 100%;
  height: auto;
}

.form-title {
  font-size: 2em;
  margin-bottom: 0.5em;
  text-align: center;
}

.form-subtitle {
  font-size: 1.2em;
  margin-bottom: 2em;
  text-align: center;
}

/* === Form Styling === */
.ftn-form {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

fieldset {
  border: 2px solid #ff6600;
  padding: 1em;
  border-radius: 8px;
  background-color: #111;
  box-shadow: 0 0 10px #f60;
}

legend {
  font-family: 'C64 Pro Mono', monospace;
  color: #ffcc00;
  padding: 0 0.5em;
  text-shadow: 0 0 5px #f60;
}

label {
  display: block;
  margin-bottom: 0.5em;
  font-family: 'C64 Pro Mono', monospace;
  color: #ffcc66;
}

input[type="text"],
input[type="email"],
select {
  width: 100%;
  padding: 0.5em;
  margin-top: 0.3em;
  background-color: #222;
  color: #ffcc66;
  border: 1px solid #ff6600;
  font-family: 'C64 Pro Mono', monospace;
  text-shadow: 0 0 3px #f60;
}

input[name="website"] {
  display: none;
}

select {
  background-color: #222;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 0.5em;
}

.network-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.network-row label {
  inline-block;
}

fieldset.packer label {
  display: inline-block;
  margin-right: 15px;
}

/* === Submit Button === */
.submit-btn {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 0.75em 1.5em;
  font-size: 1em;
  font-family: 'C64 Pro', sans-serif;
  cursor: pointer;
  text-shadow: 0 0 3px #000;
  transition: background 0.3s ease;
  align-self: center;
}

.submit-btn:hover {
  background-color: #ff3300;
}

/* === Flame Flicker === */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
  75% { opacity: 0.95; }
}

.flame-flicker {
  animation: flicker 1.5s infinite;
}
.network-info-btn {
  text-align: center;
  margin: 20px 0;
}

.info-button {
  display: inline-block;
  padding: 10px 20px;
  background: #00ff66;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 0 10px #00ff66;
  transition: 0.2s ease-in-out;
}

.info-button:hover {
  background: #00cc55;
  box-shadow: 0 0 14px #00cc55;
}
/* Amiga Terminal Validation Colors */
.amiga-success {
  color: #00FF00; /* Bright Amiga green */
  font-family: "TopazPlus", monospace;
  margin-top: 4px;
}

.amiga-error {
  color: #FF3B3B; /* Bright Amiga red */
  font-family: "TopazPlus", monospace;
  margin-top: 4px;
}

/* Inline message spacing */
.validation-msg {
  display: block;
  font-size: 0.9rem;
  padding-left: 4px;
}

/* Optional: Amiga-style underline for error fields */
input.error,
select.error {
  border: 2px solid #FF3B3B;
}

input.success,
select.success {
  border: 2px solid #00FF00;
}
