/* === Contact Screen === */
body.contact-screen {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background: #0a0f16;
  overflow: hidden;
}

.contact-panel {
  background: #161b22;
  border: 1px solid #2a2f36;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  padding: 24px;
  width: 100%;
  max-width: 620px;
  color: #e6e6e6;
}

.contact-title {
  font-size: clamp(1.5rem, 1rem + 2vw, 2.2rem);
  color: #ffd76a;
  text-align: center;
  margin-bottom: 18px;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}

.contact-text {
  font-size: 1rem;
  color: #d8dee9;
  margin-bottom: 20px;
  text-align: center;
}

/* Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.9rem;
  color: #ffd76a;
}

.form-input,
.form-textarea {
  background: #0f141b;
  border: 1px solid #2a2f36;
  border-radius: 8px;
  padding: 10px;
  color: #e6e6e6;
  font-size: 1rem;
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #ffd76a;
  box-shadow: 0 0 6px rgba(255,215,0,0.3);
}

.form-textarea {
  resize: none;
  height: 120px;
}

/* External Links */
.contact-links {
  margin-bottom: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-link {
  color: #4da3ff;
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-link:hover {
  text-decoration: underline;
}
