
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display.swap');


:root {
  --simpsons-yellow: #FFD90F;
  --fortnite-blue: #0078D7;
  --dark-bg: #1a1a1a;
  --light-text: #ffffff;
  --dark-text: #1a1a1a;
  --grey-text: #cccccc;
  --section-bg: #2a2a2a;
}

body {
  background-color: var(--fortnite-blue);
  background-size: cover;
  width: 100%;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  height: auto;
  padding-bottom: 60px;
}

/* Bouton retour simple (Simpsons x Fortnite) */
.btn-retour {
  display: inline-block;
  padding: 10px 16px;
  background: transparent;
  color: var(--simpsons-yellow);
  border: 2px solid var(--simpsons-yellow);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-retour:hover {
  background: var(--simpsons-yellow);
  color: var(--dark-text);
  box-shadow: 0 6px 20px var(--fortnite-blue);
  transform: translateY(-2px);
}

.centre {
    max-width: 900px;
    margin: 20px auto;
    background-color: #ffffff; 
    border: 4px solid var(--fortnite-blue);
    border-radius: 15px; 
    box-shadow: 0 10px 20px var(--dark-bg);
    overflow: hidden; 
}


header {
    background-color: #333;
    padding: 20px;
    text-align: center;
    border-bottom: 4px solid var(--simpsons-yellow);
}

header h1 {
    margin: 0;
    color: #ffffff;
    font-size: 2.5em;
    text-shadow: 2px 2px 4px var(--dark-bg);
}

main {
    padding: 30px 40px;
}

h2 {
    color: #8A2BE2; /* Violet Tempête Fortnite */
    border-bottom: 2px dashed var(--fortnite-blue);
    padding-bottom: 5px;
    margin-top: 30px;
}

p, ul {
    font-size: 20px;
    margin-bottom: 15px;
}

ul {
    list-style-type: '🍩'; /* Puces personnalisées ! */
    padding-left: 30px;
}

li {
    padding-left: 10px;
    margin-bottom: 5px;
}

footer {
    background-color: #333;
    color: var(--grey-text);
    text-align: center;
    padding: 20px;
    font-size: 15px;
    border-top: 4px solid var(--simpsons-yellow);
}

footer p {
    margin: 0;
}


.warning {
    background-color: #fff0b3;
    border-left: 5px solid #D40000;
    padding: 15px;
    font-style: italic;
    font-weight: bold;
}