/* L'image de fond du Héro */
.hero-section {
    min-height: 100vh;
    padding-top: 80px;
    overflow: hidden; /* Empêche le débordement des images absolues */
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.desc-text {
    max-width: 600px;
    color: #d1d5db;
    font-size: 1.1rem;
}

/* Boîtes d'infos serveur (IP, Version, Statut) */
.server-box {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-title {
    font-size: 0.7rem;
    color: #9ca3af;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: bold;
}

.box-value {
    font-weight: bold;
    font-family: monospace;
    font-size: 1.1rem;
}

/* Badges / Tags */
.custom-badge {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.75rem;
}

.carousel-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Transition douce (fade) */
}

.bg-slide.active {
    opacity: 1;
}

.container.z-1 {
    z-index: 1;
}

.indicator-track {
    width: 60px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2); /* Gris très transparent */
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.indicator-progress {
    width: 0%;
    height: 100%;
    background-color: #f59e0b; /* Orange (couleur de ton bouton) */
    transition: width 0.1s linear; /* Rend l'animation fluide */
}

.box-title {
    font-size: 0.8rem;
    color: #4ade80; /* Titres en VERT comme demandé */
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.box-value {
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s;
}

/* Boîte Copiable pour l'IP */
.interactive-box {
    cursor: pointer;
    transition: all 0.2s ease;
}

.interactive-box:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.02);
}

/* Bordure verte ajoutée dynamiquement au clic */
.interactive-box.copied {
    border: 1px solid #4ade80;
    background-color: rgba(74, 222, 128, 0.1);
}