* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    background-color: #07111f;
    color: #ffffff;
    overflow-x: hidden;
}

a{
    color:white;
    text-decoration:none;
}

ul{
    list-style:none;
}


/* 1st Section */
.hero{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 20px 80px;
}

.hero-content{
    max-width: 800px;
}

.hero h1{
    font-size: 72px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p{
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #b8c2d1;
}

.hero-btn{
    padding: 15px 30px;
    background-color: #ff8c00;
    border-radius: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn:hover{
    background-color: #e07b00;
    transform: translateY(-5px);
}


/* Stats */
.stats{
    max-width: 1300px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 30px;
}

.card{
    background-color: #0f1c2a;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: 0.35s;
    border: 1px solid #ffffff14;
}

.card:hover{
    transform: translateY(-10px);
    border-color: #ff8c00;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.card h2{
    font-size: 36px;
    margin-bottom: 10px;
}

.card span{
    font-size: 18px;
    color: #b8c2d1;
}

/*Ligues*/

.tournois{
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 30px;
}

.tournois-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.tournois-title h2{
    font-size: 38px;
}

.grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tournoi-card{
    background-color: #0f1c2a;
    border-radius: 20px;
    border: 1px solid #ffffff14;
    padding: 30px;
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.tournoi-card:before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:75px;
    height:75px;
    border-radius:50%;
    background: #ff8c00;
    transition:.4s;
}

.tournoi-card:hover{
    transform: translateY(-10px);
    border-color: #ff8c00;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.tournoi-card:hover:before{
    top:-30px;
    right:-30px;
}

.tournoi-card h3{
    font-size: 28px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.tournoi-card button{
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    background: #ff8c00;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.tournoi-card button:hover{
    background: white;
    color  : #ff8c00;
}



/*Actualités*/


.actualites{
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 30px;
}

.actualites-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.actualites-title h2{
    font-size: 38px;
}

.news-card{
    display: flex;
    gap: 20px;
    background-color: #0f1c2a;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid #ffffff14;
}

.news-card img{
    width: 180px;
    object-fit: cover;
}

.news-card div{
    padding: 20px;
}

.news-card h3{
    margin-bottom: 15px;
}

.news-card p{
    color: #b8c2d1;
    margin-bottom: 20px;
}


footer{
    margin-top: 150px;
    background-color: #050a14a6;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 70px;
    border-top: 1px solid #ffffff14;
}

footer h3{
    font-size: 28px;
    margin-bottom: 20px;
}

footer h4{
    font-size: 20px;
    margin-bottom: 20px;
}


footer p{
    color: #b8c2d1;
    margin-bottom: 20px;
}

footer a{
    display: block;
    margin-bottom: 10px;
    color: #b8c2d1;
    transition: .3s;
}

footer a:hover{
    color: white;
    transform: translateY(-5px);
}