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

body {
    background-color: #050505; /* Noir quasi total */
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* === GESTION DU FOND ÉTOILÉ === */
#stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle infinite ease-in-out;
}

.shooting-star {
    position: absolute;
    height: 2px;
    background: linear-gradient(-45deg, rgba(255, 255, 255, 1), rgba(0, 0, 255, 0));
    filter: drop-shadow(0 0 6px rgba(105, 155, 255, 1));
    animation: shoot linear;
    opacity: 0;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes shoot {
    0% { transform: translateX(0) translateY(0) rotate(-45deg); opacity: 1; width: 0px; }
    30% { width: 100px; }
    100% { transform: translateX(-800px) translateY(800px) rotate(-45deg); opacity: 0; width: 0px; }
}

/* === CONTENU PRINCIPAL === */
.content {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    z-index: 10;
}

/* === TITRE VAPORWAVE === */
.neon-text {
    font-family: 'Monoton', cursive;
    font-size: 4rem; /* Ajuster selon besoin */
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: flicker 1.5s infinite alternate;     
}

/* L'effet Glow Rosé/Bleu */
.neon-text {
    text-shadow: 
      0 0 10px #fff,
      0 0 20px #fff,
      0 0 40px #ff00de,
      0 0 70px #ff00de,
      0 0 80px #ff00de,
      0 0 100px #ff00de,
      0 0 150px #ff00de;
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        text-shadow: 
            0 0 4px #fff,
            0 0 10px #fff,
            0 0 18px #ff00de,
            0 0 38px #ff00de,
            0 0 73px #ff00de,
            0 0 80px #ff00de,
            0 0 94px #ff00de,
            0 0 140px #ff00de;
    }
    20%, 24%, 55% {
        opacity: 0.9;
        text-shadow: none;
    }
}

/* === SOUS-TITRE === */
.subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.highlight {
    color: #00e6e6; /* Cyan retro */
    font-weight: 700;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff00de, transparent);
    margin: 2rem auto;
    width: 50%;
    opacity: 0.5;
}

/* === LISTE DES SERVEURS === */
.server-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.server-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 222, 0.2);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.server-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 222, 0.3);
    border-color: rgba(255, 0, 222, 0.6);
}

.server-info {
    text-align: left;
}

.server-info h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.address {
    background: #000;
    color: #00e6e6;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #00e6e6;
    box-shadow: 0 0 5px #00e6e6;
    font-size: 1.1rem;
}

/* Animation flottante pour le logo */
.floating-logo {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Mobile responsive */
@media (max-width: 600px) {
    .neon-text { font-size: 2.5rem; }
    .server-item { flex-direction: column-reverse; gap: 1rem; text-align: center; }
    .server-info { text-align: center; }
}
