.header { background-color: #0a0a0d; position: fixed; top: 0; left: 0; right: 0; z-index: 1000; border-bottom: 2px solid rgba(190, 30, 45, 0.3); box-shadow: 0 2px 16px rgba(190, 30, 45, 0.08); }
.header .header-container { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 68px; }
.header .header-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.header .header-logo .logo-icon { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.header .header-logo .logo-text { font-family: "Plus Jakarta Sans", sans-serif; font-size: 22px; font-weight: 800; color: #ffffff; letter-spacing: -0.02em; }
.header .header-logo .logo-text .logo-accent { color: #BE1E2D; }
.header .nav { display: flex; align-items: center; gap: 8px; }
@media (max-width: 1023px) {
  .header .header-container { height: 60px; }
  .header .header-logo .logo-icon { width: 36px; height: 36px; }
  .header .header-logo .logo-text { font-size: 17px; }
}
@media (min-width: 1200px) {
  .header .header-container { padding: 0 32px; }
}
