/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette Laser Game - Orange Pâle et Moderne */
    --neon-orange: #ff9966;
    --neon-orange-light: #ffaa77;
    --neon-orange-dark: #ff8855;
    --neon-yellow: #ffcc88;
    --neon-red: #ff7766;
    --neon-green: #66ff99;
    --cyber-orange: #ff9966;
    --cyber-red: #ff8866;
    --dark-bg: #0f0f14;
    --darker-bg: #0a0a0f;
    --panel-bg: rgba(25, 20, 18, 0.7);
    --panel-border: rgba(255, 153, 102, 0.25);
    --white: #ffffff;
    --gray: #b0b5c0;
}

body {
    font-family: 'Orbitron', 'Rajdhani', 'Arial', sans-serif;
    color: var(--white);
    background: var(--dark-bg);
    line-height: 1.6;
    padding-top: 80px;
    position: relative;
    overflow-x: hidden;
}

/* Effet de grille futuriste en fond */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 153, 102, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 153, 102, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Effet de lumière ambiante */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, 
        rgba(255, 153, 102, 0.04) 0%, 
        transparent 50%),
        radial-gradient(circle at 70% 50%, 
        rgba(255, 204, 136, 0.03) 0%, 
        transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: ambientMove 30s ease-in-out infinite;
}

@keyframes ambientMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(10%, -10%) rotate(120deg); }
    66% { transform: translate(-10%, 10%) rotate(240deg); }
}

/* Header et Navigation */
header {
    background: rgba(15, 15, 20, 0.92);
    padding: 0.8rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 153, 102, 0.25),
                0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s;
    filter: drop-shadow(0 0 10px rgba(255, 153, 102, 0.4));
}

.logo:hover img {
    filter: drop-shadow(0 0 15px rgba(255, 153, 102, 0.6))
            drop-shadow(0 0 25px rgba(255, 204, 136, 0.4));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-orange);
    text-shadow: 0 0 8px rgba(255, 153, 102, 0.4);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-orange), var(--neon-yellow));
    transition: width 0.3s;
    box-shadow: 0 0 6px rgba(255, 153, 102, 0.3);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-reservation {
    background: linear-gradient(135deg, var(--cyber-orange), var(--cyber-red));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid var(--neon-orange);
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 119, 0, 0.3),
                0 0 30px rgba(255, 68, 0, 0.15);
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.btn-reservation:hover {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-red));
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5),
                0 0 40px rgba(255, 68, 0, 0.3);
    border-color: var(--neon-yellow);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--gray);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--neon-orange);
    transform: scale(1.2);
    text-shadow: 0 0 15px var(--neon-orange);
}

/* Menu burger pour mobile */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.burger div {
    width: 25px;
    height: 2px;
    background: var(--neon-orange);
    margin: 4px;
    transition: all 0.3s;
    box-shadow: 0 0 8px var(--neon-orange);
}

.burger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
    background: var(--neon-red);
    box-shadow: 0 0 15px var(--neon-red);
}

.burger.active .line2 {
    opacity: 0;
}

.burger.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
    background: var(--neon-red);
    box-shadow: 0 0 15px var(--neon-red);
}

.nav-links {
    transition: right 0.4s ease;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(255, 153, 102, 0.03) 0%, 
        rgba(15, 15, 20, 0.9) 50%,
        rgba(255, 136, 85, 0.03) 100%);
    border-radius: 10px;
    margin: 2rem auto;
    max-width: 1400px;
    border: 1px solid var(--panel-border);
    box-shadow: 0 0 25px rgba(255, 153, 102, 0.15),
                inset 0 0 40px rgba(255, 153, 102, 0.03);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 153, 102, 0.06),
        transparent);
    animation: scanLine 4s linear infinite;
}

@keyframes scanLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 900;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 12px rgba(255, 153, 102, 0.3));
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--gray);
    font-weight: 400;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* Bannière promotionnelle */
.promo-banner {
    background: rgba(25, 20, 18, 0.8);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border-radius: 10px;
    border: 1px solid var(--neon-orange);
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 153, 102, 0.2),
                inset 0 0 20px rgba(255, 153, 102, 0.06);
}

.promo-banner img {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 153, 102, 0.25);
}

/* Sections principales */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

section {
    margin-bottom: 4rem;
}

h2 {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
    letter-spacing: 3px;
    font-weight: 900;
    filter: drop-shadow(0 0 10px rgba(255, 153, 102, 0.25));
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--neon-orange), 
        var(--neon-yellow),
        transparent);
    box-shadow: 0 0 10px rgba(255, 153, 102, 0.3);
}

h3 {
    color: var(--neon-orange);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 153, 102, 0.3);
    letter-spacing: 2px;
}

/* Cards et grilles */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--panel-bg);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--panel-border);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        rgba(255, 102, 0, 0.1),
        transparent 30%
    );
    animation: cardRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover::before {
    opacity: 1;
}

@keyframes cardRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-orange);
    box-shadow: 0 8px 25px rgba(255, 153, 102, 0.25),
                0 0 35px rgba(255, 153, 102, 0.12);
}

.card-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 153, 102, 0.4));
}

.card h3 {
    color: var(--neon-orange);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Tarifs */
.tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tarif-card {
    background: var(--panel-bg);
    border-radius: 8px;
    padding: 2rem;
    border: 2px solid var(--panel-border);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tarif-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 102, 0, 0.1),
        transparent);
    transition: left 0.5s;
}

.tarif-card:hover {
    transform: scale(1.05);
    border-color: var(--neon-orange);
    box-shadow: 0 8px 28px rgba(255, 153, 102, 0.25),
                0 0 45px rgba(255, 153, 102, 0.12);
}

.tarif-card:hover::after {
    left: 100%;
}

.tarif-card h3 {
    color: var(--neon-orange);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--panel-border);
    text-shadow: 0 0 8px rgba(255, 153, 102, 0.3);
    position: relative;
    z-index: 1;
}

.tarif-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.tarif-card li {
    padding: 0.7rem 0;
    color: var(--gray);
    border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    position: relative;
    padding-left: 1.5rem;
}

.tarif-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--neon-orange);
    text-shadow: 0 0 6px rgba(255, 153, 102, 0.4);
}

.tarif-card li:last-child {
    border-bottom: none;
}

.tarif-card .price {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-align: center;
    margin: 1rem 0;
    filter: drop-shadow(0 0 12px rgba(255, 153, 102, 0.4));
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--cyber-orange), var(--cyber-red));
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    text-align: center;
    border: 1px solid var(--neon-orange);
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 153, 102, 0.25),
                0 0 30px rgba(255, 136, 102, 0.12);
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}

.btn:hover {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-red));
    border-color: var(--neon-yellow);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 153, 102, 0.4),
                0 0 45px rgba(255, 136, 102, 0.25);
}

/* Horaires */
.horaires-section {
    background: var(--panel-bg);
    border-radius: 8px;
    padding: 2rem;
    border: 2px solid var(--panel-border);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.horaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.horaire-block h3 {
    color: var(--neon-orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 8px rgba(255, 153, 102, 0.3);
    font-size: 1.4rem;
}

.horaire-block p {
    padding: 0.7rem 0;
    padding-left: 1rem;
    border-left: 2px solid var(--neon-orange);
    margin: 0.5rem 0;
    transition: all 0.3s;
    color: var(--gray);
}

.horaire-block p:hover {
    border-left-color: var(--neon-yellow);
    padding-left: 1.5rem;
    color: var(--white);
    text-shadow: 0 0 4px rgba(255, 153, 102, 0.2);
}

.note {
    background: linear-gradient(135deg, 
        rgba(255, 119, 0, 0.1) 0%, 
        rgba(20, 15, 10, 0.8) 100%);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 4px solid var(--neon-green);
    margin-top: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

/* Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid var(--panel-border);
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--neon-orange);
    box-shadow: 0 8px 30px rgba(255, 153, 102, 0.3),
                0 0 40px rgba(255, 153, 102, 0.18);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    filter: brightness(0.8);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(255, 119, 0, 0.9), 
        rgba(255, 68, 0, 0.7),
        transparent);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Formulaire de contact */
.contact-form {
    max-width: 700px;
    margin: 2rem auto;
    background: var(--panel-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--panel-border);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--neon-orange);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 0 0 4px rgba(255, 153, 102, 0.2);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border-radius: 5px;
    border: 1px solid var(--panel-border);
    background-color: rgba(15, 15, 20, 0.7);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-orange);
    box-shadow: 0 0 15px rgba(255, 153, 102, 0.2);
    background-color: rgba(15, 15, 20, 0.85);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--panel-bg);
    border-radius: 8px;
    border: 2px solid var(--panel-border);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    color: var(--neon-orange);
    margin-bottom: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--gray);
}

.map-container {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 153, 102, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Actualités */
.actualites {
    background: var(--panel-bg);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    border: 1px solid var(--panel-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.actualites h2 {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.actualites-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.actualites img {
    max-width: 100%;
    border-radius: 8px;
    border: 1px solid var(--neon-orange);
    box-shadow: 0 0 20px rgba(255, 153, 102, 0.25);
}

/* Footer */
footer {
    background: rgba(5, 5, 8, 0.95);
    border-top: 2px solid var(--neon-orange);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 -4px 30px rgba(255, 102, 0, 0.3);
    backdrop-filter: blur(10px);
}

footer p {
    color: var(--gray);
    margin: 0.5rem 0;
}

footer a {
    color: var(--neon-orange);
    text-decoration: none;
    transition: all 0.3s;
}

footer a:hover {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow);
}

.footer-social {
    margin-top: 1rem;
}

.footer-social a {
    margin: 0 0.5rem;
    font-size: 1.5rem;
    display: inline-block;
    transition: all 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
    text-shadow: 0 0 15px var(--neon-orange);
}

/* Responsive Design */

@media screen and (max-width: 1200px) {
    nav {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 75px;
    }
    
    .burger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 80%;
        max-width: 400px;
        height: 100vh;
        text-align: left;
        transition: 0.4s;
        padding: 100px 2rem 2rem;
        border-left: 3px solid var(--neon-orange);
        box-shadow: -5px 0 40px rgba(255, 102, 0, 0.5);
        justify-content: flex-start;
        overflow-y: auto;
        gap: 0;
        z-index: 999;
        backdrop-filter: blur(20px);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 102, 0, 0.2);
    }
    
    .nav-links a {
        display: block;
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }
    
    .nav-links .btn-reservation {
        margin-top: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .social-icons-mobile {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 102, 0, 0.2);
    }
    
    .social-icons-mobile a {
        font-size: 1.5rem;
    }
    
    .social-icons {
        display: none;
    }
    
    .logo img {
        height: 60px;
    }
    
    header {
        padding: 0.5rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .cards-grid,
    .tarifs-grid,
    .horaires-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .hero {
        padding: 2rem 1rem;
        margin: 1rem;
    }
    
    section {
        margin-bottom: 3rem;
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 1.9rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .btn, .btn-reservation {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .card, .tarif-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .promo-banner {
        padding: 1.5rem;
        margin: 1.5rem;
    }
    
    .nav-links {
        width: 85%;
    }
}

@media screen and (max-width: 400px) {
    .hero h1 {
        font-size: 1.7rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 1.5rem 1rem;
    }
    
    .nav-links {
        width: 90%;
        padding: 90px 1.5rem 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

/* Animation de pulsation néon */
@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.5),
                    0 0 40px rgba(0, 128, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 240, 255, 0.8),
                    0 0 60px rgba(0, 128, 255, 0.5);
    }
}

/* Scroll smooth */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

/* Bouton scroll to top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--cyber-orange), var(--cyber-red));
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    z-index: 999;
    font-size: 1.5rem;
    border: 2px solid var(--neon-orange);
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5),
                0 0 40px rgba(255, 119, 0, 0.3);
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-red));
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.7),
                0 0 60px rgba(255, 68, 0, 0.5);
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--cyber-orange), var(--cyber-red));
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    z-index: 999;
    font-size: 1.5rem;
    border: 1px solid var(--neon-orange);
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 153, 102, 0.3),
                0 0 30px rgba(255, 153, 102, 0.18);
}

.scroll-top.visible {
    opacity: 1;
}

.scroll-top:hover {
    background: linear-gradient(135deg, var(--neon-orange), var(--neon-red));
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 153, 102, 0.45),
                0 0 45px rgba(255, 136, 102, 0.3);
}

/* Effet de glitch subtil sur hover des titres */
@keyframes glitch {
    0% {
        text-shadow: 0 0 8px rgba(255, 153, 102, 0.3);
    }
    25% {
        text-shadow: -2px 0 8px rgba(255, 153, 102, 0.3), 
                     2px 0 8px rgba(255, 204, 136, 0.3);
    }
    50% {
        text-shadow: 2px 0 8px rgba(255, 153, 102, 0.3), 
                     -2px 0 8px rgba(255, 204, 136, 0.3);
    }
    75% {
        text-shadow: -2px 0 8px rgba(255, 204, 136, 0.3), 
                     2px 0 8px rgba(255, 153, 102, 0.3);
    }
    100% {
        text-shadow: 0 0 8px rgba(255, 153, 102, 0.3);
    }
}

h2:hover {
    animation: glitch 0.3s ease-in-out;
}