body {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f7fa;
  margin: 0;
  padding: 0;
  color: #333;
}

header {
  background-color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

header h1 {
  margin: 0;
  font-size: 2em;
  color: #003366;
}

header p {
  font-size: 1.1em;
  color: #666;
  margin-top: 10px;
}

section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

h2 {
  color: #003366;
  border-bottom: 2px solid #0066cc;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, button {
  padding: 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
}

input:focus, button:focus {
  outline: none;
  border-color: #0066cc;
}

button {
  background-color: #0066cc;
  color: white;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

button:hover {
  background-color: #004d99;
}

#memberList {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.member-card {
  background: #fdfdfd;
  border-left: 5px solid #0066cc;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.member-card strong {
  font-size: 1.1em;
  color: #002244;
}

.member-card a {
  color: #0066cc;
  text-decoration: none;
}

.member-card a:hover {
  text-decoration: underline;
}

.comment-form {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.comment-form input {
  flex: 1;
}

.comments ul {
  padding-left: 20px;
  margin-top: 5px;
}

.comments li {
  font-size: 0.95em;
  color: #555;
}

footer 
{
  background: #003366;
  color: #fff;
  padding: 20px;
  text-align: center;
  border-top: 2px solid #0066cc;
}

.hero {
  text-align: center;
  background: #eaf1fb;
  padding: 60px 20px;
  border-bottom: 1px solid #ddd;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #003366;
}

.hero p {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #444;
  line-height: 1.6;
}

.hero-actions {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

.hero-actions li {
  margin-bottom: 10px;
  font-size: 1em;
  padding-left: 1em;
  position: relative;
}

.hero-actions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: #0066cc;
  border-radius: 50%;
}

.stage-tips {
  background: rgba(255, 80, 80, 0.08); /* rouge doux transparent */
  padding: 40px 30px;
  margin: 40px auto;
  border-radius: 8px;
  max-width: 800px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stage-tips h3 {
  color: #b00000;
  font-size: 1.6em;
  margin-bottom: 20px;
  text-align: center;
}

.stage-tips ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.stage-tips ul li {
  padding-left: 1.2em;
  margin-bottom: 10px;
  position: relative;
  font-size: 1em;
  color: #333;
}

.stage-link {
  color: #cc0000;
  font-weight: bold;
  text-decoration: underline;
}

.stage-link:hover {
  color: #a00000;
}

