/* ================================================
   STYLES DE BASE & RESET
   ================================================ */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--gradient-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Sections */
section {
    min-height: 100vh;
    padding: 100px 20px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Titres de sections */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: var(--neon-glow);
    word-wrap: break-word;
}

.section-title::before {
    content: attr(data-number);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
    font-size: 5rem;
    opacity: 0.1;
    font-weight: 900;
}

/* Boutons CTA */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--darker);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

/* Anti-débordement global */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

pre, code {
    overflow-x: auto;
    word-wrap: break-word;
}

table {
    width: 100%;
    overflow-x: auto;
}
