:root {
    /* Couleurs principales */
    --primary: #0062ff; /* Bleu Tregor */
    --secondary: #00d2ff;
    --neon-pink: #ff007f;
    --dark-bg: #030305;
    --white: #FFFFFF;
    
    /* Fonts */
    --main-font: 'Inter', sans-serif;
    --title-font: 'Orbitron', sans-serif;

    /* Effets Modernes (Glassmorphism) */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);
    
    /* Dégradés */
    --grad-blue: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* Reset & Base */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: var(--main-font); 
    background-color: var(--dark-bg); 
    color: var(--white); 
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ajout d'une texture de grain subtile sur tout le site */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}

h1, h2, h3 {
    font-family: var(--title-font);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Hero Section Modernisée --- */
#hero { 
    height: 90vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(0, 98, 255, 0.12) 0%, var(--dark-bg) 80%);
}

.hero-content h1 { 
    font-size: clamp(2.5rem, 8vw, 5rem); /* Responsive font size */
    margin-bottom: 15px; 
    font-weight: 900;
    background: linear-gradient(to bottom, #fff 40%, #888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 98, 255, 0.3));
    animation: titleFloat 4s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-content p { 
    font-size: 1.5rem; 
    opacity: 0.7; 
    margin-bottom: 40px; 
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Système de Cartes Glassmorphism --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    padding: 100px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card, .shop-card, .mini-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 50px 35px;
    border-radius: 30px; /* Arrondis plus larges */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover {
    border-color: var(--secondary);
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4));
}

/* --- Boutons avec effet de brillance (Glossy) --- */
.btn-cta, .cta-main {
    display: inline-block;
    position: relative;
    padding: 18px 45px;
    background: var(--grad-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -150%;
    width: 200%; height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: 0.6s;
}

.btn-cta:hover::before {
    left: 150%;
}

.btn-cta:hover { 
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 98, 255, 0.4); 
}

/* Orbes de lumière décoratives en arrière-plan */
.glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 98, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* --- Footer Modernisé --- */
footer {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border) !important;
    padding: 80px 0 40px !important;
}

.visitor-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
}