/* ===========================================
   Header Styles
   =========================================== */

header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 2rem 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.6s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}
