.header { position: fixed; top: 0; left: 0; width: 100%; height: 60px; background-color: #1a1a1a; color: white; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); z-index: 1000; box-sizing: border-box; } .header-left span { color: white; font-size: 1.6em; font-weight: bold; text-decoration: none; } .header-right { display: flex; gap: 15px; } .header-link { color: #ddd; text-decoration: none; font-size: 1em; transition: color 0.2s; } .header-link:hover { color: white; }