* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #2a0a3d 0%, #0d0014 55%, #000000 100%);
  font-family: 'Segoe UI', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.home-btn {
  position: fixed;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #7b00d6, #b026ff);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow:
    0 0 8px #b026ff,
    0 0 18px rgba(176, 38, 255, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.home-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 14px #ff4dff,
    0 0 32px rgba(255, 77, 255, 0.7);
}

.contact-wrap {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(160deg, rgba(40, 0, 60, 0.9), rgba(10, 0, 15, 0.95));
  border: 1px solid #b026ff;
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow:
    0 0 15px #a020f0,
    0 0 40px rgba(160, 32, 240, 0.4),
    inset 0 0 20px rgba(160, 32, 240, 0.15);
}

.glow-title {
  text-align: center;
  color: #f4e8ff;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin: 0 0 28px;
  text-shadow:
    0 0 5px #d63bff,
    0 0 15px #b026ff,
    0 0 30px #7b00d6;
}

label {
  display: block;
  color: #e6c9ff;
  font-weight: 600;
  margin: 18px 0 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 2px solid #b026ff;
  background: #f5f0ff;
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  box-shadow:
    0 0 6px #b026ff,
    0 0 14px rgba(176, 38, 255, 0.6);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #ff4dff;
  box-shadow:
    0 0 10px #ff4dff,
    0 0 22px #ff4dff,
    0 0 40px rgba(255, 77, 255, 0.6);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.send-btn {
  display: block;
  width: 100%;
  margin-top: 26px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #7b00d6, #b026ff, #ff4dff);
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  box-shadow:
    0 0 10px #b026ff,
    0 0 25px rgba(176, 38, 255, 0.6);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.send-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 16px #ff4dff,
    0 0 40px rgba(255, 77, 255, 0.8);
}

.msg {
  text-align: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 10px;
}

.msg.success {
  background: rgba(0, 255, 150, 0.1);
  border: 1px solid #00ffb0;
  color: #7fffd4;
  text-shadow: 0 0 8px #00ffb0;
}

.msg.error {
  background: rgba(255, 0, 80, 0.1);
  border: 1px solid #ff2b6d;
  color: #ff9db9;
  text-shadow: 0 0 8px #ff2b6d;
}
