/* ===== STYLES THÉMATIQUES FUTURISTES ===== */

/* Variables CSS personnalisées */
:root {
    --neon-blue: #00D4FF;
    --electric-green: #00FF88;
    --orange: #FF6B35;
    --dark-gray: #1A1A1A;
    --light-gray: #E5E5E5;
    --glass-bg: rgba(26, 26, 26, 0.3);
    --glass-border: rgba(0, 212, 255, 0.4);
}

/* Typographie personnalisée */
.font-space-grotesk {
    font-family: 'Space Grotesk', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

/* Couleurs personnalisées */
.text-light-gray-100 {
    color: #E5E5E5;
}

/* ===== GLASSMORPHISM ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--neon-blue);
    border-radius: 0;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

/* ===== BOUTONS FUTURISTES ===== */
.glow-button {
    background: linear-gradient(45deg, var(--neon-blue), var(--orange));
    box-shadow: 0 0 15px var(--neon-blue);
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.glow-button:hover {
    box-shadow: 0 0 25px var(--neon-blue);
}

.glow-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ===== EFFETS NÉON ===== */
.neon-glow {
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
}

.neon-glow-green {
    text-shadow: 0 0 10px var(--electric-green), 0 0 20px var(--electric-green);
}

.neon-glow-orange {
    text-shadow: 0 0 10px var(--orange), 0 0 20px var(--orange);
}

/* ===== ANIMATIONS PERSONNALISÉES ===== */
@keyframes pulse {
    0% { 
        box-shadow: 0 0 10px var(--neon-blue); 
    }
    50% { 
        box-shadow: 0 0 20px var(--neon-blue); 
    }
    100% { 
        box-shadow: 0 0 10px var(--neon-blue); 
    }
}

.pulse-cta {
    animation: pulse 2s infinite;
}

@keyframes particle-float {
    0% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 1; 
    }
    100% { 
        transform: translateY(-30px) rotate(360deg); 
        opacity: 0; 
    }
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    animation: particle-float 4s infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 80%; animation-delay: 1s; }
.particle-3 { top: 40%; left: 50%; animation-delay: 2s; }
.particle-4 { top: 80%; left: 20%; animation-delay: 3s; }
.particle-5 { top: 30%; left: 90%; animation-delay: 4s; }

/* ===== SECTION HERO ===== */
.hero-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/hero-bg.webp') center/cover;
    opacity: 0.3;
    z-index: 1;
}

/* ===== NAVIGATION ===== */
.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== CARTES CASINO ===== */
.casino-card {
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.casino-card:hover::before {
    left: 100%;
}

.casino-logo-card {
    transition: all 0.3s ease;
}

.casino-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* ===== TABLEAU DE COMPARAISON ===== */
#casino-table tr {
    transition: all 0.3s ease;
}

#casino-table tr:hover {
    background: rgba(0, 212, 255, 0.1);
}

/* ===== BOUTONS INTERACTIFS ===== */
.favorite-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-btn:hover {
    text-shadow: 0 0 10px var(--neon-blue);
}

.favorite-btn.active {
    color: #ff4757;
    text-shadow: 0 0 10px #ff4757;
}

.vote-btn {
    background: none;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vote-btn:hover {
    background: var(--neon-blue);
    color: var(--dark-gray);
    box-shadow: 0 0 15px var(--neon-blue);
}

/* ===== FORMULAIRES ===== */
input, textarea, select {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--light-gray);
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--electric-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

input::placeholder, textarea::placeholder {
    color: rgba(229, 229, 229, 0.5);
}

/* ===== PHP MODALS STYLES ===== */
#age-popup {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#age-popup .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
    border-radius: 0;
}

/* ===== BANNER COOKIES ===== */
#cookie-banner {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neon-blue);
    border-radius: 0;
}

/* ===== POPUP VÉRIFICATION ÂGE (Legacy) ===== */
#age-verification {
    background: rgba(26, 26, 26, 0.8);
}

/* ===== MENU MOBILE ===== */
#mobile-menu {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid var(--neon-blue);
}

/* ===== PROGRESS BARS ===== */
.progress-bar {
    background: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--electric-green));
    transition: width 0.5s ease;
}

/* ===== EFFETS DE SCROLL ===== */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--electric-green));
    z-index: 1000;
    transition: width 0.1s ease;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .glass-card {
        margin: 0.5rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.2rem;
    }
    
    .nav-link {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    }
}

/* ===== ANIMATIONS AOS PERSONNALISÉES ===== */
[data-aos="custom-fade"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="custom-fade"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== EFFETS DE CHARGEMENT ===== */
.skeleton {
    background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== EFFETS 3D ===== */
.card-3d {
    perspective: 1000px;
}

.card-3d-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(10deg) rotateX(5deg);
}

/* ===== EFFETS DE PARTICULES AVANCÉES ===== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle-glow {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
    animation: particle-float 6s infinite;
}

/* ===== EFFETS DE TEXTE ===== */
.text-gradient {
    background: linear-gradient(45deg, var(--neon-blue), var(--electric-green), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== EFFETS DE BORDURE ===== */
.border-glow {
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue), inset 0 0 10px rgba(0, 212, 255, 0.1);
}

/* ===== EFFETS DE FOCUS ACCESSIBILITÉ ===== */
*:focus {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

/* ===== EFFETS DE TRANSITION GLOBALES ===== */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* ===== EFFETS DE SCROLL SMOOTH ===== */
html {
    scroll-behavior: smooth;
}

/* ===== EFFETS DE PERFORMANCE ===== */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}

/* ===== EFFETS DE PRINT ===== */
@media print {
    .glass-card {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    .neon-glow {
        text-shadow: none;
        color: black;
    }
    
    .glow-button {
        background: #333;
        box-shadow: none;
    }
} 