body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background-color: #222;
  border: 2px solid #5ae6c3;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 20px rgba(90, 230, 195, 0.4);
}

h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #5ae6c3;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: bold;
}

input {
  padding: 0.6rem;
  border-radius: 0.5rem;
  border: none;
  background: #333;
  color: #f2f2f2;
}

input::placeholder {
  color: #aaa;
}

button {
  padding: 0.7rem;
  background: #5ae6c3;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #47c9ac;
}

#result {
  margin-top: 2rem;
  text-align: center;
}

.hidden {
  display: none;
}

#code-output {
  word-wrap: break-word;
  overflow-wrap: anywhere;
  font-size: 1.5rem;
  color: #ffec8b;
  font-weight: bold;
}

.icon-wrapper {
  text-align: center;
  margin-bottom: 1rem;
}

.app-icon {
  width: 100px;
  height: 100px;
  border-radius: 20%;
}

.info-links {
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
}

.info-links a {
  color: #5ae6c3;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.info-links a:hover {
  color: #ffffff;
}
