body {
  font-family: Arial, sans-serif;
  background-color: #0d0f14;
  color: #e8eaf0;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

header {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #e8c170;
}

header h2 {
  font-size: 1rem;
  font-weight: normal;
  color: #aab;
}

nav {
  background-color: #34495e;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 5px;
}

nav a:hover {
  background-color: #e8c170;
  color: #2c3e50;
}

main {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background-color: #1c2030;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

h3 {
  color: #e8c170;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

p {
  color: #c0c4d0;
  line-height: 1.6;
  margin-bottom: 20px;
}

label {
  display: block;
  margin: 16px 0 6px;
  color: #7eb8d4;
  font-weight: bold;
}

input[type="text"],
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #2a3050;
  border-radius: 5px;
  background-color: #0d0f14;
  color: #e8eaf0;
  font-size: 1rem;
}

input:focus,
select:focus {
  outline: none;
  border-color: #e8c170;
}

button {
  width: 100%;
  margin-top: 24px;
  padding: 14px;
  background-color: #e8c170;
  color: #0d0f14;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
}

button:hover {
  background-color: #7eb8d4;
}

#profileCard {
  margin-top: 24px;
  padding: 24px;
  background-color: #0d0f14;
  border: 2px solid #e8c170;
  border-radius: 8px;
}

#profileCard h4 {
  color: #e8c170;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

#profileCard p {
  color: #c0c4d0;
  margin-bottom: 8px;
}

#profileCard:empty {
  display: none;
}

footer {
  background-color: #141720;
  color: #aab;
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  margin-top: 60px;
}