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

        :root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #F7B801;
            --neon-green: #00D084;
            --dark: #0A0E27;
            --light: #F5F5F5;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background: linear-gradient(135deg, var(--dark) 0%, #1a1f3a 100%);
            color: var(--light);
            overflow-x: hidden;
            position: relative;
        }

        /* Fond animé avec graffiti */
        body::before {
            content: '';
            position: fixed;
            width: 300%;
            height: 300%;
            top: -100%;
            left: -100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 208, 132, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(248, 184, 1, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
            animation: floatBg 20s ease-in-out infinite;
        }

        @keyframes floatBg {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(50px, 50px); }
        }

        header {
            position: relative;
            z-index: 10;
            padding: 40px 20px;
            text-align: center;
            border-bottom: 3px solid var(--primary);
            background: rgba(10, 14, 39, 0.8);
            backdrop-filter: blur(10px);
        }

        .container {
            position: relative;
            z-index: 5;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1 {
            font-family: 'Bebas Neue', cursive;
            font-size: 4rem;
            letter-spacing: 3px;
            margin-bottom: 10px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--neon-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideDown 0.8s ease-out;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .subtitle {
            font-size: 1.3rem;
            color: var(--accent);
            margin-bottom: 5px;
            animation: slideDown 0.8s ease-out 0.2s both;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .location {
            font-size: 1.1rem;
            color: var(--neon-green);
            margin-top: 10px;
            animation: slideDown 0.8s ease-out 0.4s both;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .main-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 20px;
            gap: 60px;
            flex-wrap: wrap;
            position: relative;
            z-index: 5;
        }

        .hero-text {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .hero-text h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out 0.6s both;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(245, 245, 245, 0.8);
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            background: linear-gradient(90deg, var(--primary), #FF8C42);
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 1s both;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
        }

        .cta-button:active {
            transform: translateY(-1px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-visual {
            flex: 1;
            min-width: 300px;
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .spray-can {
            position: absolute;
            width: 120px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary), #FF8C42);
            border-radius: 15px;
            transform: rotate(-15deg);
            animation: sprayFloat 4s ease-in-out infinite;
            box-shadow: -5px 15px 40px rgba(255, 107, 53, 0.3);
        }

        .spray-can::before {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            background: var(--dark);
            border-radius: 50%;
            top: -20px;
            left: 30px;
            border: 3px solid var(--accent);
        }

        @keyframes sprayFloat {
            0%, 100% { transform: rotate(-15deg) translateY(0); }
            50% { transform: rotate(-15deg) translateY(-30px); }
        }

        .paint-splatter {
            position: absolute;
            opacity: 0.3;
            animation: splatPulse 2s ease-in-out infinite;
        }

        .splatter1 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--neon-green) 0%, transparent 70%);
            top: -50px;
            right: -50px;
            animation-delay: 0s;
        }

        .splatter2 {
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            bottom: 50px;
            left: -30px;
            animation-delay: 0.5s;
        }

        @keyframes splatPulse {
            0%, 100% { transform: scale(1); opacity: 0.2; }
            50% { transform: scale(1.1); opacity: 0.4; }
        }

        .coming-soon-box {
            text-align: center;
            padding: 60px 40px;
            margin: 80px 20px;
            background: rgba(0, 78, 137, 0.1);
            border: 2px dashed var(--secondary);
            border-radius: 10px;
            position: relative;
            z-index: 5;
        }

        .coming-soon-box h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
            animation: pulse 2s ease-in-out infinite;
        }

        .coming-soon-box p {
            font-size: 1.1rem;
            color: rgba(245, 245, 245, 0.8);
            margin-bottom: 15px;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Réseaux sociaux */
        .social-section {
            padding: 80px 20px;
            text-align: center;
            position: relative;
            z-index: 5;
        }

        .social-section h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 50px;
            letter-spacing: 2px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(0, 208, 132, 0.2));
            border: 2px solid var(--primary);
            color: var(--primary);
            text-decoration: none;
            font-size: 1.8rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-link:nth-child(1) {
            border-color: #1f2937;
            color: #1f2937;
        }

        .social-link:nth-child(2) {
            border-color: #E1306C;
            color: #E1306C;
        }

        .social-link:nth-child(3) {
            border-color: #1DA1F2;
            color: #1DA1F2;
        }

        .social-link:nth-child(4) {
            border-color: #FF0000;
            color: #FF0000;
        }

        .social-link:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
        }

        .email-signup {
            background: rgba(255, 107, 53, 0.1);
            padding: 40px;
            border-radius: 10px;
            border-left: 4px solid var(--primary);
            max-width: 400px;
            margin: 0 auto;
        }

        .email-signup h4 {
            color: var(--accent);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .email-signup p {
            color: rgba(245, 245, 245, 0.7);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .email-form {
            display: flex;
            gap: 10px;
        }

        .email-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            background: rgba(245, 245, 245, 0.1);
            color: var(--light);
            border: 1px solid var(--primary);
        }

        .email-form input::placeholder {
            color: rgba(245, 245, 245, 0.5);
        }

        .email-form button {
            padding: 12px 25px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .email-form button:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }

        footer {
            text-align: center;
            padding: 40px 20px;
            border-top: 3px solid var(--primary);
            background: rgba(10, 14, 39, 0.8);
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 10;
            color: rgba(245, 245, 245, 0.7);
        }

        .footer-links {
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--accent);
            text-decoration: none;
            margin: 0 20px;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        /* Graffiti texte aléatoire */
        .graffiti {
            position: fixed;
            font-family: 'Bebas Neue', cursive;
            opacity: 0.05;
            pointer-events: none;
            z-index: 1;
            letter-spacing: 2px;
        }

        .graffiti1 { top: 10%; left: 5%; font-size: 4rem; transform: rotate(-25deg); }
        .graffiti2 { top: 30%; right: 5%; font-size: 3rem; transform: rotate(15deg); }
        .graffiti3 { bottom: 20%; left: 10%; font-size: 3.5rem; transform: rotate(-10deg); }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            .hero-text h2 {
                font-size: 1.8rem;
            }

            .main-content {
                padding: 40px 20px;
                gap: 30px;
            }

            .hero-visual {
                height: 250px;
            }

            .spray-can {
                width: 80px;
                height: 200px;
            }

            .social-link {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .coming-soon-box h3 {
                font-size: 1.8rem;
            }
        }