﻿.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 107, 107, 0.3);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.yalda-promo-bar {
    background: linear-gradient(90deg, #8B0000, #ff6b6b, #8B0000);
    padding: 12px 20px;
    text-align: center;
    animation: shimmer 3s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.yalda-promo-bar:hover {
    transform: scale(1.02);
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 1.1rem;
    font-weight: 600;
}

.promo-icon {
    font-size: 1.5rem;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.promo-text {
    color: #fff;
}

.promo-code-inline {
    background: #ffd700;
    color: #1a0a0f;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}

.promo-cta {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}
