        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        :root {
            --dark-green: #0a1f0f;
            --medium-green: #1d4c21;
            --light-green: #3a8c40;
            --accent-green: #4ca050;
            --gold: #d4af37;
            --text-light: #e6f0e6;
            --text-muted: #c8e6c9;
        }
        
        body {
            background: var(--dark-green);
            color: var(--text-light);
            min-height: 100vh;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navigation Bar responsive */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 31, 15, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 20px;
            border-bottom: 2px solid var(--gold);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .nav-container {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .nav-link {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            padding: 10px 15px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            letter-spacing: 1px;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--gold);
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        /* Menu hamburger pour mobile */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }
        
        .menu-toggle span {
            width: 100%;
            height: 3px;
            background: var(--gold);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        /* Conteneur pour les icônes sociales */
        .nav-social-container {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        /* Style des icônes sociales */
        .nav-social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(61, 140, 64, 0.3);
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .nav-social-icon:hover {
            background: rgba(61, 140, 64, 0.5);
            transform: translateY(-2px);
        }
        
        .nav-social-icon i {
            font-size: 18px;
        }
        
        /* Couleurs des logos */
        .nav-social-icon[title="Discord"] i { color: #5865f2; }
        .nav-social-icon[title="X"] i { color: #000000; }
        .nav-social-icon[title="YouTube"] i { color: #ff0000; }
        .nav-social-icon[title="Instagram"] i { color: #e4405f; }
        .nav-social-icon[title="Twitch"] i { color: #9146ff; }
        .nav-social-icon[title="TikTok"] i { color: #ffffff; }
        .nav-social-icon[title="Bilibili"] i { color: #fb7299; }
        
        /* Bouton Steam - MODIFIÉ pour être à gauche */
        .nav-steam-btn {
            width: auto;
            height: 50px;
            border-radius: 25px;
            background: rgba(61, 140, 64, 0.4);
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            padding: 0 18px;
            gap: 8px;
            margin-right: 10px; /* Espacement avec les icônes suivantes */
        }
        
        .nav-steam-btn:hover {
            background: rgba(61, 140, 64, 0.6);
            transform: translateY(-2px);
        }
        
        .nav-steam-btn i {
            font-size: 20px;
            color: white;
        }
        
        .nav-steam-btn span {
            color: white;
            font-weight: bold;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Menu mobile */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 31, 15, 0.98);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            padding: 20px;
        }
        
        .mobile-menu.active {
            display: flex;
        }
        
        .mobile-nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: bold;
            text-transform: uppercase;
            padding: 15px;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-link:hover {
            color: var(--gold);
        }
        
        .mobile-social-container {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 30px;
        }
        
        /* Hero section */
        .hero {
            min-height: 100vh;
            display: flex;
            position: relative;
            padding-top: 100px;
            background: linear-gradient(rgba(10, 31, 15, 0), rgba(10, 31, 15, 0)), url('./assets/backgroundImage.png') no-repeat center center/cover;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 20px;
        }
        
        .hero-title {
            font-size: 4rem;
            margin-bottom: 20px;
            color: var(--text-light);
            text-shadow: 3px 3px 0 var(--medium-green);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            color: var(--text-muted);
        }
        
        .hero-btn {
            display: inline-block;
            padding: 15px 30px;
            background: var(--gold);
            color: var(--dark-green);
            text-decoration: none;
            font-weight: bold;
            border-radius: 30px;
            transition: all 0.3s ease;
            border: 2px solid var(--gold);
        }
        
        .hero-btn:hover {
            background: transparent;
            color: var(--gold);
        }
        
        /* Section Styles */
        .section {
            padding: 100px 0;
            scroll-margin-top: 100px;
            position: relative;
        }
        
        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--medium-green), transparent);
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--text-muted);
            text-transform: uppercase;
            text-shadow: 2px 2px 0 var(--medium-green);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--gold);
            margin: 20px auto;
            border-radius: 2px;
        }
        
        /* About Section */
        .about {
            background: #142c1a;
        }
        
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.2rem;
            line-height: 1.8;
            text-align: center;
        }
        
        /* Features Section */
        .features {
            background: #1a3b22;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            border: 2px solid var(--medium-green);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--gold);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--light-green);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-muted);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.2);
        }

        
        /* Screenshots Section */
        .screenshots {
            background: #142c1a;
        }
        
        .screenshot-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .screenshot {
            height: 200px;
            background: #2d4a2f;
            border: 3px solid var(--medium-green);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .screenshot:hover {
            border-color: var(--gold);
            transform: scale(1.03);
        }
        
        .screenshot:before {
            content: "Screenshot";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--text-muted);
            font-size: 1.2rem;
        }
        
        /* News Section */
        .news {
            background: #1a3b22;
        }
        
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .news-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: 10px;
            border: 2px solid var(--medium-green);
            transition: all 0.3s ease;
        }
        
        .news-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }
        
        .news-date {
            color: var(--gold);
            font-size: 0.9rem;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .news-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--text-muted);
        }
        
        /* Footer */
        footer {
            background: #0a1f0f;
            padding: 60px 0 40px;
            text-align: center;
            border-top: 1px solid var(--medium-green);
        }
        
        .footer-text {
            color: var(--text-muted);
            margin-bottom: 20px;
        }
        
        /* Responsive design */
        @media (max-width: 1024px) {
            .nav-social-container {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
            }

            .hero {
                background: linear-gradient(rgba(10, 31, 15, 0), rgba(10, 31, 15, 0)), url('./assets/mediumBackgroundImage.png') no-repeat center center/cover;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 12px 15px;
            }
            
            .nav-container {
                display: none;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }

            .hero {
                background: linear-gradient(rgba(10, 31, 15, 0), rgba(10, 31, 15, 0)), url('./assets/mediumBackgroundImage.png') no-repeat center center/cover;
            }
            
            .features-grid,
            .screenshot-grid,
            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .about-content {
                font-size: 1.1rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            .hero {
                background: linear-gradient(rgba(10, 31, 15, 0), rgba(10, 31, 15, 0)), url('./assets/smallBackgroundImage.png') no-repeat center center/cover;
            }
        }
        
        /* Animation */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse {
            animation: pulse 0.4s ease-in-out;
        }