/*
Theme Name: NexusPlay Theme
Author: Votre Nom
Description: Thème sur mesure pour NexusPlay (Tailwind CDN Version)
Version: 1.0
*/

/* --- RÈGLES CSS PERSONNALISÉES (Copiées de votre HTML) --- */

body {
    background-color: #000000; /* Noir total */
    color: #e2e8f0; 
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
}

/* Gradient de fond global : Ambiance Galaxie Profonde */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% -20%, #0a0e29 0%, transparent 60%),
        radial-gradient(circle at 100% 50%, #0c0a24 0%, transparent 50%),
        radial-gradient(circle at 0% 80%, #02040a 0%, transparent 50%),
        linear-gradient(to bottom, #000000, #010103);
    z-index: -2;
    pointer-events: none;
}

/* Effet Texte Or Métallique */
.text-gold-gradient {
    background: linear-gradient(180deg, #fff5c3 0%, #FFD700 45%, #d4af37 70%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0px 2px 0px rgba(0,0,0,0.5));
}

/* Bouton Or Premium */
.btn-gold {
    background: linear-gradient(135deg, #78350f 0%, #fbbf24 50%, #78350f 100%);
    background-size: 200% auto;
    color: #2a0a00;
    transition: 0.5s;
    border: 1px solid rgba(251, 191, 36, 0.4);
}
.btn-gold:hover {
    background-position: right center;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
    color: #000;
}

/* Étoiles pour le fond */
.star {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

::selection {
    background-color: #fbbf24;
    color: #020205;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #020205; }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, #1e1b4b, #fbbf24); border-radius: 4px; }

.hover-glow:hover {
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.7);
}