body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: rgb(51, 245, 2);
}

/* IMAGE DE FOND PLEIN ÉCRAN */
body {
    background: url("old.jpg/Match1.png") no-repeat center center fixed;
    background-size: cover;
    background-position: center 1%;
}

/* EFFET ASSOMBRI */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

/* HEADER */
header {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: red;
}

/* HERO CENTRÉ */
.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
}

.hero h2 {
    font-size: 3em;
}

.btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: red;
    color: white;
    text-decoration: none;
    border-radius: 30px;
}

/* BLOCS FLOTTANTS (moins rectiligne) */
.card {
    background: rgba(185, 76, 76, 0.897);
    margin: 30px;
    padding: 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.7);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
}

.gallery img {
    width: 30%;
    border-radius: 15px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}