* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: #1a1a2e; color: #eee; min-height: 100vh; }
nav { background: #16213e; padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
nav ul { list-style: none; display: flex; justify-content: center; gap: 30px; }
nav a { color: #e94560; text-decoration: none; font-weight: bold; font-size: 18px; transition: color 0.3s; }
nav a:hover { color: #ff6b6b; }
nav a.active { color: #ff6b6b; border-bottom: 2px solid #ff6b6b; }
.container { max-width: 1200px; margin: 0 auto; padding: 30px 20px; }
h1 { text-align: center; margin-bottom: 30px; color: #e94560; font-size: 2.5em; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gif-card { background: #16213e; border-radius: 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: transform 0.3s; }
.gif-card:hover { transform: translateY(-5px); }
.gif-card img { width: 100%; height: 250px; object-fit: cover; }
.gif-card p { padding: 15px; text-align: center; font-size: 14px; color: #aaa; }
footer { text-align: center; padding: 20px; color: #666; margin-top: 40px; }
