@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Special Elite', monospace;
  background: url("../../images/fondfille.webp") no-repeat center center fixed;
  background-size: cover;
  color: #2a2a2a;
}

header {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 16px 0;
  text-align: center;
  border-bottom: 2px solid #ff0000;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0;
  margin: 0;
}

header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
}

header nav a:hover {
  color: #ff0000;
}

.video-container {
  max-width: 800px;
  margin: 40px auto 20px;
  position: relative;
  padding-bottom: 56.25%; /* ratio 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.alt-video {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  color: #ccc;
}
.alt-video a {
  color: #ff4c4c;
  text-decoration: underline;
}

main {
  max-width: 800px;
  margin: 60px auto;
  background: rgba(255, 255, 240, 0.94);
  border: 2px solid #3b3b3b;
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

h1 {
  text-transform: uppercase;
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

h1::after {
  content: "CONFIDENTIEL";
  color: #fff;
  background: #ff0000;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: -15px;
  right: 0;
  transform: rotate(5deg);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

section {
  margin-bottom: 40px;
}

section h2 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #222;
  border-left: 4px solid #ff0000;
  padding-left: 12px;
}

label {
  display: block;
  font-size: 14px;
  margin: 16px 0 4px;
  color: #111;
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #444;
  background: #fffbe6;
  font-family: 'Special Elite', monospace;
  font-size: 15px;
  color: #000;
  border-radius: 4px;
}

input[type="text"]:focus {
  outline: none;
  border-color: #ff0000;
  background-color: #fff8d5;
}

fieldset {
  border: 1px dashed #333;
  padding: 20px;
  border-radius: 4px;
  margin-top: 20px;
  background-color: #f7f7e2;
}

legend {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  color: #2a2a2a;
}

fieldset label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  cursor: pointer;
}

input[type="radio"] {
  margin-right: 8px;
}

button {
  width: 100%;
  padding: 14px;
  background-color: #ff0000;
  color: white;
  font-size: 14px;
  font-weight: bold;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  cursor: pointer;
  font-family: 'Special Elite', monospace;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #c00000;
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}
.merci-title {
  text-align: center;
  font-size: 42px;
  text-transform: uppercase;
  margin-top: 60px;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.remerciement-text {
  max-width: 800px;
  margin: 40px auto 20px;
  padding: 0 20px;
  font-size: 25px;
  line-height: 1.7;
  text-align: center;
  font-family: 'Special Elite', monospace;
  color: #000000;
}

.remerciement-text em {
  font-style: italic;
  font-size: 16px;
  color: #000000;
}

.remerciement-text .highlight-code {
  color: #ee0505;
  font-weight: bold;
  font-family: monospace;
}

.buttons-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px auto 60px;
}

.end-button {
  padding: 14px 26px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-family: 'Special Elite', monospace;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.end-button.avis {
  background-color: #2EC27E;
  color: #fff;
}

.end-button.avis:hover {
  background-color: #27a66d;
  box-shadow: 0 0 18px #2EC27E;
}


.end-button.autres {
  background-color:#000000;
  color: #ffffff;
}
.end-button.autres:hover {
  background-color: #000000;
  box-shadow: 0 0 18px #000000;
}
