/* Custom Font */
@font-face {
    font-family: 'PlasmaDrip';
    src: url('../fonts/plasma-drip.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Base Reset */
body, h1, h2, h3, h4, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Jolly Lodger', 'Oswald', Arial, sans-serif;

    background: #356c42;
    color: #fff;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-text {
    font-family: 'Jolly Lodger', 'Oswald', Arial, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #000;
}

/* CTA Section */
.cta-section {
    padding: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;

    background: linear-gradient(45deg, #23361c 0%, #162a0e 25%, #15250f 50%, #172f0e 75%, #13270b 100%);
    background-size: 400% 400%;
    animation: venomFlow 8s ease-in-out infinite;
}


.cta-section h2 {
    font-family: 'Jolly Lodger', 'Oswald', Arial, sans-serif;
    font-size: 7rem;
    text-shadow: 0 2px 50px #0b3a08, 0 0 20px rgba(115, 255, 0, 0.5);
    text-transform: uppercase;

    color: rgb(31, 68, 22);
    animation: plasmaGlow 3s ease-in-out infinite alternate;
}
.cta-section p {
    color: #fff;

}

/* Navigation Bar */
.site-header {
    background: #142513;  /* Couleur de fond de la barre de navigation */
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}
.logo a {
    color: #ff005a;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #000;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.main-nav a {

    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;

    transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
    color: #33cc3b;

}
.player-table-row-left td {
    text-align: left;
    width: 100px;
    background-color: #142513;
    color: #fff;
}
.player-table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 2rem;
    font-size: 1.2rem;
    font-family: 'Rubik', Arial, sans-serif;

}
.player-table th, .player-table td {
    border: 5px solid #355838;
    padding: 0.5rem;
    text-align: left;
    width: 0px;
}


.player-table th {  
    background-color: #142513;
    color: #fff;
}




/* Footer */
.site-footer {
    background: #142513;

    bottom: -85px;
    width: 100%;
    color: #fff;
    padding: 2.5rem 0 1.2rem 0;
    border-top: 2px solid #a4a8c0;
}

.footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-brand {
    flex: 1 1 200px;
}
.footer-logo {
    color: #33cc59;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.footer-desc {
    color: #bbb;
    font-size: 1rem;
    margin-top: 0.5rem;
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.footer-nav a {
    color: #59ce65;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-nav a:hover {
    color: #143906;
}
.footer-social {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}
.social-icon img {
    width: 32px;
    height: 32px;
    filter: grayscale(1) brightness(0.8);
    transition: filter 0.2s, transform 0.2s;
}
.social-icon:hover img {
    filter: none;
    transform: scale(1.1);
}

/* Connexion */
.connexion {
    background: #181a20;
    padding: 4rem 0 3rem 0;
    display: flex;
    justify-content: center;
}
.connexion-container {
    background: #23263a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    margin: 0 auto;
    width: 850px;
}

/* Form Styles for Connexion and Registration */
.connexion-container form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    width: 100%;
}

.connexion-btn, .inscription-button {
    align-self: flex-start;
    margin-left: 0;
}

.connexion-container input[type="text"],
.connexion-container input[type="password"] {
    background: #1b1e29;
    color: #bfc4d1;
    border: none;
    border-radius: 4px;
    width: 95%;
    padding: 1.2rem 1rem;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    outline: none;
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 600;
}
.connexion-container input[type="text"]::placeholder,
.connexion-container input[type="password"]::placeholder {
    color: #bfc4d1;
    font-family: 'Oswald', Arial, sans-serif;
    opacity: 0.7;
    font-size: 2.1rem;
}

.connexion-container input[type="date"] {
    background: #1b1e29;
    color: #bfc4d1;
    border: none;
    border-radius: 4px;
    width: 95%;
    padding: 1.2rem 1rem;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    outline: none;
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 600;
}

.connexion-container input[type="date"]::placeholder {
    color: #bfc4d1;
    font-family: 'Oswald', Arial, sans-serif;
    opacity: 0.7;
    font-size: 2.1rem;
}


.connexion-btn {
    width: 300px;
    height: 50px;
    border-radius: 5px;
    border: none;
    transition: all 0.5s ease-in-out;
    font-size: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 600;
    float: left;
    display: flex;
    padding: 0.5rem;
    align-items: center;
    background: #a2a6b3;
    color: #ffffff;
  }
  
  

  .connexion-btn:hover {
    box-shadow: 0 0 20px 0px #2e2e2e3a;
  }
  
  .connexion-btn .icon {
    position: absolute;
    height: 40px;
    width: 70px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
  }
  
  .connexion-btn .text {
    transform: translateX(55px);
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    font-style: italic;
    text-align: center;
  }
  
  .connexion-btn:hover .icon {
    width: 250px;
  }
  
  .connexion-btn:hover .text {
    transition: all 0.5s;
    opacity: 0;
  }
  
  .connexion-btn:focus {
    outline: none;
  }
  
  .connexion-btn:active .icon {
    transform: scale(0.85);
  }

.connexion-container h2 {
    color: #bfc4d1;
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 400;
}






/* Plasma Animation Keyframes */
@keyframes plasmaFlow {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes plasmaGlow {
    0% {
        text-shadow: 0 2px 50px #0b3a08, 0 0 20px rgba(115, 255, 0, 0.3);
    }
    100% {
        text-shadow: 0 2px 50px #0b3a08, 0 0 40px rgba(115, 255, 0, 0.8), 0 0 60px rgba(115, 255, 0, 0.4);
    }
}

/* Legacy Venom/Lava Animation Keyframes */
@keyframes venomFlow {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes venomWave {
    0% {
        background-position: -200% 0%;
    }
    50% {
        background-position: 200% 0%;
    }
    100% {
        background-position: -200% 0%;
    }
}

@keyframes venomPulse {
    0% {
        background-position: 0% 0%;
        opacity: 0.3;
    }
    25% {
        background-position: 100% 0%;
        opacity: 0.7;
    }
    50% {
        background-position: 100% 100%;
        opacity: 0.5;
    }
    75% {
        background-position: 0% 100%;
        opacity: 0.8;
    }
    100% {
        background-position: 0% 0%;
        opacity: 0.3;
    }
}





