body {
    background-color: #121212;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main {
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 100%;
}

.calendrier-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 90%;
    max-width: 1200px;
}

.carte-gp {
    background-color: #1e1e1e;
    margin: 10px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
    transition: transform 0.2s ease-in-out;
}

.carte-gp:hover {
    transform: scale(1.05);
}

.carte-gp h2 {
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
}

.carte-gp p {
    font-size: 1em;
    color: #ccc;
    margin: 5px 0;
}

.carte-gp img {
    height: auto;
    border-radius: 5px;
    max-height: 150px;
    width: auto;
    object-fit: contain;
}

.sprint-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff4500, #ff0000);
    color: white;
    font-size: 0.8em;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
}


.link {
    text-decoration: none;
    color: inherit;
}