Peliculas De Juegos Del Hambre Exclusive -

<!-- modal for extra info --> <div id="filmModal" class="modal"> <div class="modal-content"> <h3 id="modalTitle">The Hunger Games</h3> <p id="modalDetail">Additional details about the movie — runtime, awards, legacy.</p> <button class="close-modal" id="closeModalBtn">✨ close ✨</button> </div> </div>

// modal logic const modal = document.getElementById('filmModal'); const modalTitle = document.getElementById('modalTitle'); const modalDetail = document.getElementById('modalDetail'); const closeBtn = document.getElementById('closeModalBtn'); peliculas de juegos del hambre

<!-- film grid injected via JS but static backup structure --> <div class="film-grid" id="filmGrid"></div> She fights to save Peeta while District 13

/* film grid */ .film-grid display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 3rem 0 5rem; .film-card background: rgba(15, 18, 24, 0.75); backdrop-filter: blur(2px); border-radius: 2rem; overflow: hidden; transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1); border: 1px solid rgba(201, 160, 61, 0.2); box-shadow: 0 20px 35px -15px rgba(0,0,0,0.6); .film-card:hover transform: translateY(-12px); border-color: rgba(201, 160, 61, 0.6); box-shadow: 0 30px 40px -18px black; background: rgba(20, 24, 32, 0.9); .poster position: relative; height: 400px; background-size: cover; background-position: center top; transition: transform 0.5s ease; .film-card:hover .poster transform: scale(1.02); .overlay position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, #030507ee, transparent); padding: 1.5rem 1rem 0.8rem; .year font-size: 0.8rem; font-weight: 500; background: #c9a03dcc; display: inline-block; padding: 0.2rem 0.8rem; border-radius: 30px; backdrop-filter: blur(2px); letter-spacing: 0.5px; color: #0a0c12; font-weight: 700; .film-info padding: 1.5rem; .film-title font-size: 1.6rem; font-weight: 700; font-family: 'Cormorant Garamond', serif; letter-spacing: -0.3px; margin-bottom: 0.5rem; display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; .film-title span:first-child background: linear-gradient(135deg, #f3e0b0, #dbb85c); background-clip: text; -webkit-background-clip: text; color: transparent; .director font-size: 0.8rem; color: #c9aa6e; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 1px; .synopsis font-size: 0.9rem; color: #cec6b5; margin: 0.8rem 0 1rem; line-height: 1.45; .tagline font-style: italic; font-size: 0.85rem; border-left: 3px solid #c9a03d; padding-left: 0.75rem; margin: 0.8rem 0; color: #e7cf9e; .btn-detail background: none; border: 1.5px solid #c9a03d; color: #c9a03d; padding: 0.5rem 1.2rem; border-radius: 40px; font-weight: 600; font-size: 0.75rem; cursor: pointer; transition: 0.25s; margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 6px; background: rgba(0,0,0,0.4); .btn-detail:hover background: #c9a03d; color: #0a0c12; border-color: #c9a03d; Katniss leads the rebel forces, confronting President Snow

<script> // Complete filmography: Hunger Games movies (including The Ballad of Songbirds & Snakes) const movies = [ id: 1, title: "The Hunger Games", year: 2012, director: "Gary Ross", tagline: "May the odds be ever in your favor.", synopsis: "In a dystopian future, Katniss Everdeen volunteers for the deadly Hunger Games to save her sister. Her courage ignites a rebellion.", posterBg: "https://image.tmdb.org/t/p/w780/qySsrCfbpU2rFwZ6fcyrBjeDZoj.jpg", extra: "★★★★★ 84% on Rotten Tomatoes , id: 2, title: "The Hunger Games: Catching Fire", year: 2013, director: "Francis Lawrence", tagline: "Remember who the real enemy is.", synopsis: "After surviving the 74th Games, Katniss and Peeta become targets of the Capitol. Forced into a Quarter Quell, they fight for survival and revolution.", posterBg: "https://image.tmdb.org/t/p/w780/tUfK1gNjMFhQbSycvJ9YrbcDDFF.jpg", extra: "Considered the franchise's best entry — 89% RT, epic arena design, and powerful political themes." , id: 3, title: "The Hunger Games: Mockingjay – Part 1", year: 2014, director: "Francis Lawrence", tagline: "Fire burns brighter in the darkness.", synopsis: "Katniss becomes the symbol of the rebellion, the Mockingjay. She fights to save Peeta while District 13 prepares for all-out war.", posterBg: "https://image.tmdb.org/t/p/w780/omBpRrHMcnsqLw9FwEL2yEAB5Lv.jpg", extra: "Dark & emotional chapter. Golden Globe nomination for Best Original Song 'Yellow Flicker Beat'." , id: 4, title: "The Hunger Games: Mockingjay – Part 2", year: 2015, director: "Francis Lawrence", tagline: "The revolution is coming. The fight is real.", synopsis: "The final assault on the Capitol. Katniss leads the rebel forces, confronting President Snow and the deadly traps of the Capitol.", posterBg: "https://image.tmdb.org/t/p/w780/lNyRlsPtwizPqtJIqO0iTrhOHGv.jpg", extra: "Epic conclusion — intense action, emotional closure for Panem. Katniss's final bow." , id: 5, title: "The Hunger Games: The Ballad of Songbirds & Snakes", year: 2023, director: "Francis Lawrence", tagline: "Everyone wants to be a victor.", synopsis: "Years before becoming president, a young Coriolanus Snow mentors a tribute from District 12, Lucy Gray Baird, during the 10th Hunger Games.", posterBg: "https://image.tmdb.org/t/p/w780/mDfJG3LC3Dgb67Nzs7FFK8T4lSH.jpg", extra: "Prequel masterpiece — 91% audience score, explores Snow's origin and Lucy Gray's haunting legacy." ];

/* custom scrollbar */ ::-webkit-scrollbar width: 6px; ::-webkit-scrollbar-track background: #1e1a14; ::-webkit-scrollbar-thumb background: #c9a03d; border-radius: 6px;