.promo-banner {
    background: #ceff1a;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(206, 255, 26, 0.4);
    cursor: pointer;
    transition: background 0.3s ease;
}

.promo-banner:hover {
    background: #b5e600;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    width: 90%;
    justify-content: center;
}

.promo-urgent {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.05);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.promo-pulse {
    width: 6px;
    height: 6px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 5px #ff0000;
    animation: pulse 2s infinite;
}

.promo-text {
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.promo-text strong {
    color: #000;
    font-weight: 800;
    text-decoration: underline;
}

.promo-badge {
    background: #000;
    color: #ceff1a;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

    70% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 8px 0;
        height: 40px;
        /* Force fixed height to match navbar offset */
        box-sizing: border-box;
    }

    .promo-content {
        gap: 6px;
        flex-wrap: nowrap;
        /* Force single line */
        white-space: nowrap;
        text-align: center;
        width: 100%;
        overflow: hidden;
    }

    .promo-badge {
        display: none;
    }

    .promo-urgent {
        padding: 0;
        border: none;
        background: transparent;
        font-size: 0.7rem;
    }

    .promo-text {
        font-size: 0.75rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}