nav {
  background-color: #333;
  color: #ffa600;
  padding: 10px 0;
  text-align: center;
}


nav li {
  display: inline;
  margin: 0 10px;
}

nav a {
  color: #ff00ff;
  text-decoration: none;
  padding: 2%;
  border-radius: 10%;
}

nav a:hover {
  text-decoration: underline;
  color: #ff0000;
}

.accueil {
  background-color: #f0f0f0;
  color: #333;
  
  text-align: center;

}

.recherche {
  
  
  
  
  background-color: #315763;
}



@keyframes blink {
  0%, 100% { opacity: 1; }
  25% { opacity: 0.2; }
  50% { opacity: 0.3; }
  75% { opacity: 0.4; }
}

.arcade-title {
  font-family: 'Press Start 2P', cursive;
  color: #ff00ff;
  animation: blink 1.2s infinite;
  text-align: center;
}



*






.retro-footer {
    position: relative;
    background: #000;
    color: #00ffcc;
    text-align: center;
    padding: 60px 20px;
    font-family: 'Press Start 2P', cursive;
    overflow: hidden;
    margin-top: 20%;
}


.crt-overlay {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 204, 0.05),
        rgba(0, 255, 204, 0.05) 2px,
        transparent 2px,
        transparent 4px
    );
    animation: flicker 5s infinite;
}


@keyframes flicker {
    0% { opacity: 0.95; } 
    50% { opacity: 1; }
    100% { opacity: 0.97; }
}


.insert-coin {
    font-size: 14px;
    margin-bottom: 30px;
    animation: blink 1s infinite;
}


@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}


.pixel-character {
    width: 40px;
    height: 40px;
    margin: 0 auto 30px;
   
    background-size: cover;
    animation: float 2s ease-in-out infinite;
}


@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}


.arcade-button {
    background: #ff0080;
    color: white;
    border: 4px solid #fff;
    padding: 12px 25px;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 0 15px #ff0080;
    transition: all 0.2s ease;
}

.arcade-button:hover {
    background: #00ffcc;
    color: black;
    box-shadow: 0 0 20px #00ffcc;
    transform: scale(1.05);
}

.conteneur {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}
