/* ===== GLOBAL ===== */
body {
    margin: 0;
    font-family: Arial;
    color: white;
    background: url("background.png") center / cover no-repeat fixed;
}

/* ===== BANNIERE ===== */
.banner {
    text-align: center;
    margin-top: 60px;
}

.banner-img {

    width: 90%;

    max-width: 850px;

    height: auto;

    border-radius: 10px;

    display: block;

    margin: auto;
}

/* ===== CONTENU ===== */
.content {
    text-align: center;
    margin: 60px auto;
    padding: 50px;
    max-width: 900px;

    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);

    border-radius: 15px;
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

/* ===== TITRE ===== */
.title-gradient {
    font-size: 32px;
    background: linear-gradient(to right, #0055ff, white, #ff0000, #00cc44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== BOUTON ===== */
.btn {
    display: block;
    margin: 30px auto;
    padding: 14px 30px;

    background: linear-gradient(90deg, #0055ff, #ff0000, #00cc44);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;

    box-shadow: 0 0 15px rgba(255,255,255,0.2);
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255,255,255,0.5);
}

/* ===== MENU ===== */

.menu-btn {

    position: fixed;

    top: 20px;

    left: 20px;

    cursor: pointer;

    z-index: 1000;

    color: white;

    font-size: 26px;

    font-weight: bold;

    padding: 12px 20px;

    border-radius: 12px;

    background: rgba(0,0,0,0.55);

    backdrop-filter: blur(6px);

    box-shadow:
        0 0 15px rgba(0,0,0,0.8);

    transition: 0.3s;
}

.menu-btn:hover {

    transform: scale(1.05);

    box-shadow:
        0 0 15px rgba(0,85,255,0.5),
        0 0 15px rgba(255,0,0,0.4),
        0 0 15px rgba(0,204,68,0.4);
}

.menu-text {
    margin-left: 5px;
}

.sidebar {
    position: fixed;
    left: -260px;
    top: 0;

    width: 260px;
    height: 100%;

    background: rgba(0,0,0,0.95);

    transition: 0.3s;

    z-index: 999;

    padding-top: 90px;
}

.sidebar a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.sidebar a:hover {
    background: linear-gradient(90deg, #0055ff, #ff0000, #00cc44);
    padding-left: 35px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

/* ===== LOGO ===== */
.big-logo {
    text-align: center;
    margin: 80px 0;
}

.big-logo img {
    width: 220px;
    opacity: 0.9;
    transition: 0.3s;
}

.big-logo img:hover {
    transform: scale(1.05);
}

/* ===== TEAM ===== */
.team-grid {
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.player-card {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.7);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0,0,0,0.9);
}

.player-card img {
    width: 220px;
    height: 334px;
    border-radius: 15px;
    margin-right: 40px;
    object-fit: cover;
}

.player-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.player-name {
    font-size: 22px;
    font-weight: bold;
    background: linear-gradient(to right, #0055ff, white, #ff0000, #00cc44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.player-role {
    font-size: 16px;
    color: #aaa;
}

.player-card:nth-child(1) .player-role {
    color: red;
}

.player-card:hover {
    transform: scale(1.03);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

/* ===== FORMULAIRE ===== */
.form-block {
    margin-bottom: 25px;
}

.form-block label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
    text-align: left;
}

.form-block input,
.form-block textarea {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.9);
    color: white;
    box-shadow: 0 0 10px rgba(0,85,255,0.3);
}

.form-block input:focus,
.form-block textarea:focus {
    outline: none;
    box-shadow:
        0 0 10px #0055ff,
        0 0 10px #ff0000,
        0 0 10px #00cc44;
}

.form-block textarea {
    height: 150px;
    resize: none;
}

/* ===== VIDEOS ===== */
.video-card {
    margin-bottom: 40px;
    text-align: center;
}

.video-title {
    text-align: center !important;
    margin-bottom: 10px;
    font-size: 18px;
    color: #ccc;
}

.video-card iframe {
    width: 100%;
    max-width: 700px;
    height: 400px;

    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* ================================================== */
/* ============= DERNIERE NEWS ACCUEIL ============== */
/* ================================================== */

.news-home {

    text-align: center;

    margin: 60px auto;

    padding: 50px;

    max-width: 900px;

    background: rgba(0,0,0,0.35);

    backdrop-filter: blur(6px);

    border-radius: 15px;

    box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

.news-home-title {

    font-size: 32px;

    margin-bottom: 30px;

    background: linear-gradient(
        to right,
        #0055ff,
        white,
        #ff0000,
        #00cc44
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-home-post-title {

    font-size: 24px;

    color: white;

    margin-bottom: 15px;
}

.news-home-date {

    color: #aaa;

    margin-bottom: 20px;

    font-size: 14px;
}

.news-home-text {

    color: #ddd;

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 30px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

    .content,
    .news-home {

        width: 90%;

        padding: 25px;

        box-sizing: border-box;
    }

    .news-home-title {
        font-size: 26px;
    }

    .news-home-post-title {
        font-size: 20px;
    }

    .news-home-text {
        font-size: 15px;
    }

}
/* ===== SERVER LIVE ===== */

.server-block {

    margin-bottom: 60px;
}

.server-live-wrapper {

    position: relative;

    width: 90%;

    max-width: 850px;

    margin: auto;
}

.server-banner {

    width: 100%;

    border-radius: 12px;

    display: block;
}

/* GAME TRACKER */

/* ===== SERVER LIVE ===== */

.server-block {

    margin-bottom: 60px;
}

.server-live-wrapper {

    position: relative;

    width: 90%;

    max-width: 850px;

    margin: auto;
}

.server-banner {

    width: 100%;

    border-radius: 12px;

    display: block;

    box-shadow:
        0 0 30px rgba(0,0,0,0.8);
}

/* GAME TRACKER LIVE */

.gt-live {

    position: absolute;

    top: 63.8%;

    left: 50%;

    transform: translate(-50%, -50%);

    width: 61.5%;

    height: 33%;

    object-fit: fill;

    border-radius: 14px;

    opacity: 1;

    mix-blend-mode: normal;

    box-shadow:
        0 0 20px rgba(0,0,0,0.7);
}
.cs2-overlay {

    position: absolute;

    top: 63.8%;

    left: 25.8%;

    transform: translate(-50%, -50%);

    width: 94px;

    height: 89px;

    object-fit: cover;

    z-index: 20;

    pointer-events: none;

    border-radius: 4px;

    opacity: 0.985;

    filter: blur(0.25px);

    box-shadow:
        0 0 6px rgba(0,0,0,0.18);
}