        /* Variables et styles globaux */
        :root {
            --primary-color: #2874A6;
            --secondary-color: #221f1f;
            --text-color: #f5f5f5;
            --dark-bg: #0b0b0b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }

	a {
		color:var(--primary-color);
		text-decoration:none;
	}
        body {
            background-color: var(--dark-bg);
            color: var(--text-color);
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: rgba(0, 0, 0, 0.8);
            position: fixed;
            width: 100%;
            z-index: 100;
            padding: 20px 0;
            top: 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 24px;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/fond.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 60px;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
	    font-family:serif;
            font-size: 6rem;
	    font-weight:100;
            margin-bottom: 20px;
            letter-spacing: 0.2rem;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--text-color);
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn:hover {
            background-color: #f40612;
            transform: translateY(-3px);
        }

        /* Synopsis Section */
        .synopsis {
            padding: 10px 0;
            background-color: var(--secondary-color);
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background-color: var(--primary-color);
            margin: 10px auto 0;
        }

        /* Characters Section */
        .characters {
            padding: 80px 0;
        }

	.review-grid,
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .character-card {
            background-color: var(--secondary-color);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .character-card:hover {
            transform: translateY(-10px);
        }

       .character-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .character-info {
            padding: 20px;
        }

        .character-name {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .actor-name {
            color: #ccc;
            font-style: italic;
            margin-bottom: 15px;
        }

        /* Trailer Section */
        .lefilm {
            padding: 0;
            background-color: var(--secondary-color);
            text-align: center;
        }

        .lefilm-container {
            width: 100%;
            max-width: 640px;
            margin: 0 auto;
            position: relative;
            padding-bottom: 360px; /*56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }

        .lefilm-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-button {
            font-size: 80px;
            color: var(--primary-color);
            cursor: pointer;
        }

        /* infos Section */
	#infos { padding: 80px 0; }
	#infos ul {
		display:block;
       		text-align:center;
		list-style-type:none;
       	}
	#infos ul li {
		display:inline-block;
		padding:0.5em 2em;
	}


        /* merci Section */
	#merci { padding: 80px 0; }
	#merci ul {
		display:block;
       		text-align:center;
		list-style-type:none;
       	}
	#merci ul li {
		display:inline-block;
		padding:0.5em 2em;
	}

        /* Reviews Section */
        .reviews {
            padding: 80px 0;
        }

        .reviews-grid {
		display:block;
		text-align:center;
	}

        .review-card {
            display:inline-block;
            background-color: var(--secondary-color);
            padding: 25px;
	    margin:20px;
            border-radius: 12px;
        }

        .review-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .reviewer {
            font-weight: bold;
	    text-align:right;
        }

        .rating {
            color: gold;
            font-size: 20px;
            margin-top: 10px;
        }

        /* Footer Section */
        footer {
            background-color: var(--secondary-color);
            padding: 40px 0;
            text-align: center;
        }

        .social-icons {
            margin-bottom: 20px;
        }

        .social-icons a {
            color: var(--text-color);
            margin: 0 15px;
            font-size: 24px;
            transition: color 0.3s;
        }

        .social-icons a:hover {
            color: var(--primary-color);
        }

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

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

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

        .copyright {
            color: #777;
            font-size: 14px;
        }

        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .hamburger {
                display: block;
            }

            nav {
                position: absolute;
                top: 70px;
                left: 0;
                background-color: rgba(0, 0, 0, 0.9);
                width: 100%;
                padding: 20px;
                transform: translateY(-150%);
                transition: transform 0.3s;
            }

            nav.active {
                transform: translateY(0);
            }

            nav ul {
                flex-direction: column;
            }

            nav ul li {
                margin: 10px 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

	    .review-grid,
            .character-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }

        @media screen and (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .review-card {
                flex: 0 0 260px;
            }
        }

.icon-fx {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { transform:scale(0.1); opacity: 0; }
  to   { transform:scale(1); opacity: 1; }
}

