.header {
    position: fixed;
    top: 1rem;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

.header-container {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 0.8rem 1.8rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 28px;
    width: auto;
    display: block;
}

.header-spacer {
    width: 28px;
}

/* Construction Badge */
.header-badge-construction {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 91, 219, 0.1);
    border: 1px solid rgba(79, 110, 247, 0.25);
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(170, 190, 255, 0.85);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4f6ef7;
    box-shadow: 0 0 6px rgba(79, 110, 247, 0.9);
    animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(79, 110, 247, 0.7);
    }

    50% {
        box-shadow: 0 0 14px rgba(79, 110, 247, 1), 0 0 28px rgba(79, 110, 247, 0.3);
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.7rem 1.2rem;
        max-width: calc(100% - 2rem);
    }

    .header-badge-construction {
        font-size: 0.62rem;
        padding: 0.25rem 0.6rem;
    }

    .logo-img {
        height: 22px;
    }

    .header-spacer {
        width: 22px;
    }
}