/**
 * Header Styles
 * Fixed top navigation bar with logo and actions
 */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(var(--header-height) + var(--safe-top));
    padding-top: var(--safe-top);
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 60%, transparent 100%);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: max(12px, var(--safe-left));
    padding-right: max(12px, var(--safe-right));
    transition: background var(--transition-slow);
}

.header.solid {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

.header-actions {
    display: flex;
    gap: 4px;
}
