:root {
    --primary: #CCFF00;
    /* Vert acide */
    --bg: #050505;
}

body {
    margin: 0;
    background-color: var(--bg);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    /* Laisse passer le scroll */
}

.photo-portal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: url('ta-photo.jpg') center/cover;
    border-radius: 50%;
    filter: blur(10px);
    /* Sera modulé par GSAP */
    opacity: 0;
}

.section {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    z-index: 1;
}

.content {
    max-width: 600px;
}

.content.right {
    margin-left: auto;
}

h1,
h2 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary);
}

/* Horizontal Scroll Section */
.horizontal-scroll {
    display: flex;
    gap: 50px;
    width: 300vw;
    /* 3 cartes de 100vw */
}

.project-card {
    width: 80vw;
    height: 60vh;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}