body {
    font-family: 'Poppins', sans-serif;
    background: url('/imgs/background/back.webp') no-repeat center center/cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
}


h1, h2 {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}




.grey-title {
    margin-top: 200px;
    margin-bottom: 50px;
    font-size: 44px;
    color: #ffffff;
    font-family: 'Anton', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
}






.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-right: 20px;
    margin-top: 20px;
    border-radius: 30%;
    background-color: #222;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid #a3a3a3; 

}

.icon-button:hover {
    background-color: #444;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-color: #333;
}



.login-section {
    position: fixed; 
    top: 20px;       
    right: 20px;     
}


.login-button {
    display: inline-block;
    padding: 15px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #333;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: background-color 0.3s ease, transform 0.3s ease; 
    margin-top: 20px;
    margin-right: 20px;
    border: 2px solid #a3a3a3; 
}

.login-button:hover {
    background-color: #444; 
    transform: scale(1.05); 
}

.login-button:active {
    background-color: #222; 
    transform: scale(1); 
}













/* * Features for index */

#features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 120px;
}

.card {
    background-color: #2c2c2c;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 320px;
    height: 400px;
    margin: 10px;
    margin-top: 90px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card.card1:hover {
    background-color: #333;
    transform: translateY(-15px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.card.card2:hover {
    background-color: #444;
    transform: translateY(-15px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.card.card3:hover {
    background-color: #555;
    transform: translateY(-15px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card img {
    width: 50%;
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin: 0 auto;
}

.card h3 {
    font-size: 28px;
    margin-top: 27px;
    color: #f4f4f4;
    user-select: none;
}

.card p {
    margin-top: 25px;
    font-size: 18px;
    color: #ddd;
    font-weight: bold;
    user-select: none;
}

.feature_icon {
    filter: grayscale(100%) brightness(90%);
}







/* * Trailer for index */

.trailer-section {
    min-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}

.trailer-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 10px;
}

.trailer-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}








/* * Carrousel for index */

#carrousel {
    padding: 20px 0; 
    text-align: center;
    position: relative;
    user-select: none;
}

.carousel {
    position: relative;
    overflow: hidden;
    width: 100%; 
    max-width: 1000px; 
    margin: 0 auto;
    background-color: inherit;
    margin-bottom: 300px; 
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
    border-radius: 10px;
}

.avatar1 {
    border-radius: 15px;
}

.carousel-item {
    min-width: 33.33%;
    box-sizing: border-box;
    display: flex;
    margin-top: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; 
    transition: all 0.3s ease; 
}

.carousel-item img {
    max-width: 100%; 
    max-height: 180px;
    width: auto;
    height: auto;
    border-radius: 20px;
}

.carousel-title,
.carousel-subtitle {
    text-align: center;
}

.carousel-title {
    margin-top: 10px;
    font-size: 1.2em;
    color: #ffffff;
    font-weight: bold;
    margin-top: 15px;
}

.carousel-subtitle {
    margin-top: 10px;
    font-size: 1.2em;
    color: #ccba1c;
    font-weight: bold;
}

.carousel-subtitle-dog {
    margin-top: 10px;
    font-size: 1.2em;
    color: #d400ff;
    font-weight: bold;
}














#accueil {
    position: relative;
    padding-top: 0px;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    background: transparent;
    overflow: hidden;
    z-index: 0;
}


#accueil h1 {
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: -10px;
}

#accueil p {
    font-size: 24px;
    max-width: 700px;
    font-weight: 800; 
    color: #ffffff;
    font-style: italic;
}




#accueil-2 {
    position: relative;
    padding-top: 0px;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    background: transparent;
    overflow: hidden;
    z-index: 0;
}


#accueil-2 h1 {
    font-family: 'Anton', sans-serif;
    font-size: 60px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: -10px;
    margin-top: -39px;
}


#accueil-2 p {
    font-size: 24px;
    max-width: 700px;
    font-weight: 800; 
    color: #ffffff;
    font-style: italic;
}


.small-text {
    font-size: 40px;
    vertical-align: baseline; 
    position: relative;
    top: -5px;
}

  

.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px 0 110px 0;
    background: linear-gradient(45deg, #333, #555, #777);
    background-size: 400% 400%;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Press Start 2P', cursive;
    animation: gradientAnimation 5s ease infinite;
    cursor: pointer;
    border: 2px solid #444;

}

.btn:hover {
    background: linear-gradient(45deg, #ff6f61, #6a1b9a, #00bcd4, #4caf50);
    background-size: 400% 400%;
    transform: translateY(-4px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}


.btn-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center; 
    flex-wrap: wrap;
    margin-top: 20px;
    user-select: none;
}



.btn-play {
    display: inline-block;
    padding: 17px 28px;
    font-size: 21px;
    font-weight: bold;
    color: #fff;
    background-color: #333;
    border: 2px solid #444;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-play i {
    margin-left: 8px; 
    font-size: 20px; 
}

.btn-play:hover {
    background-color: #444;
    border-color: #555;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}

.btn-play:active {
    background-color: #222;
    border-color: #333;
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}



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







.container-discord {
    position: relative;
    display: inline-block;
    margin-top: 40px;
    /* margin-bottom: 15px; */
    user-select: none;
}

.background-image {
    display: block;
    width: 100%; 
    max-width: 500px; 
    border-radius: 11px;
}

.overlay-button {
    position: absolute;
    bottom: 20px; 
    right: 16px;  
    background-color: #047441;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.overlay-button:hover {
    background-color: #3ca374;
}



.countdown-popup {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(145deg, #313131, #1f1f1f);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        0 6px 6px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    font-size: 17px;
    font-weight: 700;
    z-index: 1000;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.countdown-popup p {
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

@media (max-width: 480px) {
    .countdown-popup {
        bottom: 15px;
        right: 15px;
        padding: 15px;
        font-size: 18px;
        width: calc(100% - 30px);
        max-width: 300px;
        margin: 0 auto;
    }
}








#status-section {
    max-width: 890px;
    height: 350px;
    margin: 0 auto 60px;
    background-color: #272727;
    padding: 15px;
    border-radius: 15px;
    border: 2px solid #444;
    color: #fff;
    line-height: 1.6;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
}

#status-section h1 {
    font-size: 2rem;
    color: #ffffff;
    font-family: 'Anton', sans-serif;
    font-weight: 900;
    margin-bottom: -10px;
    text-decoration: underline solid #ffffff;
    text-underline-offset: 10px;
    text-decoration-thickness: 2px;
    text-decoration-skip-ink: none;
}

#status {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#status-indicator {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: red;
    margin-right: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#status-indicator.online {
    background-color: green;
    box-shadow: 0 0 12px rgba(0, 255, 0, 0.6);
}

#status-indicator.offline {
    background-color: red;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
}

#status-text {
    font-size: 1.4rem;
    color: #f0f0f0;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 30px;
}

#info-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 50px;
    box-sizing: border-box;

}

#left-info, #right-info {
    flex: 1;
    min-width: 0;
    text-align: left;
    padding: 0 20px;
    font-size: 20px;

}

#right-info {
    margin-left: 100px;
}

#left-info div, #right-info div {
    font-size: 1.1rem;
    color: #ddd;
    font-weight: bold;
    margin-bottom: 10px;
    white-space: nowrap;

    font-size: 22px;

}
