@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #121212;
  color: #eaeaea;
  text-align: center;
}

header {
  background: #1c1c1c;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid #333;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: #ccc;
}

h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 10px;
}

h2 {
  font-size: 20px;
  font-weight: 500;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.rapport-header {
  background: #181818;
  color: #eaeaea;
  padding: 24px;
  margin: 30px auto;
  max-width: 640px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #333;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}

.rapport-header h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.rapport-header .confidentiel {
  color: #ff4c4c;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

form {
  background: #1a1a1a;
  max-width: 640px;
  margin: 30px auto;
  padding: 30px;
  text-align: left;
  border: 1px solid #2c2c2c;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

label,
legend {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #ddd;
  line-height: 1.5;
  margin: 20px 0 8px;
}

input[type="text"],
select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  font-size: 15px;
  background: #202020;
  color: #fff;
  border: 1px solid #444;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}

input[type="text"]:focus,
select:focus {
  outline: none;
  background: #2a2a2a;
  border-color: #888;
}

fieldset {
  border: none;
  margin-top: 30px;
  padding: 0;
}

fieldset label {
  display: flex;
  align-items: center;
  background: #181818;
  border: 1px solid #2f2f2f;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

fieldset label:hover {
  background: #232323;
}

label input {
  margin-right: 10px;
}

button {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #3a3a3a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

button:hover {
  background: #555;
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 60px;
}

.video-container iframe {
  width: 800px;
  height: 450px;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.button-group {
  margin-top: 50px;
  text-align: center;
}

.button-group a {
  display: inline-block;
  margin: 12px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.button-group a:first-child {
  background: linear-gradient(135deg, #fdd835, #ff9800);
  color: #121212;
}

.button-group a:last-child {
  background: linear-gradient(135deg, #4fc3f7, #0288d1);
  color: #121212;
}

.button-group a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  filter: brightness(1.05);
}
