body {
  margin: 0;
  background: #0f0f14;
  font-family: 'Inter', sans-serif;
  color: white;
}

.contact-hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 120px 20px;
  background: linear-gradient(to bottom, #141621, #0f0f14);
}

.contact-container {
  max-width: 600px;
  width: 100%;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(90deg,#ff7a00,#ffb347);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 30px auto;
}

h1 {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  margin: 0;
}

.subtitle {
  text-align: center;
  color: #aaa;
  margin-top: 15px;
  margin-bottom: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-size: 14px;
  color: #ddd;
}

input, textarea, select {
  background: #1c1f2b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  color: white;
  font-size: 14px;
  outline: none;
  transition: 0.2s ease;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border: 1px solid #ff7a00;
  box-shadow: 0 0 0 3px rgba(255,122,0,0.15);
}

.submit-btn {
  margin-top: 20px;
  padding: 16px;
  border-radius: 40px;
  border: none;
  background: linear-gradient(90deg,#ff7a00,#ff9a2f);
  color: black;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,122,0,0.4);
}





.contact-links {
  margin: 15px 0;
  font-size: 14px;
}

.contact-item {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px; /* espace entre label et lien */
}

.contact-label {
  color: #fff; /* texte blanc pour Instagram:, Email:, Discord: */
  font-weight: 500;
}

.contact-link {
  color: #1DA1F2; /* lien Instagram visible */
  text-decoration: underline;
}





.tooltip {
  position: relative;
  display: inline-block;
  margin-left: 5px;
}

.tooltip-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  border-radius: 50%;
  border: 1px solid #fff; /* contour blanc */
  color: #fff; /* le i reste blanc */
  font-size: 12px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  background-color: transparent; /* cercle vide */
}

.tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
