#tv-promo-bars-container {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.tv-promo-bar {
    animation: slideDown 0.3s ease-out;
    align-items: center;
    box-sizing: border-box;
    clear: both;
    display: flex !important;
    justify-content: space-between;
    min-height: 40px;
    padding: 0 20px;
    position: relative;
    width: 100%;
}

.tv-promo-bar:nth-child(2) {
    position: relative;
    top: 0;
}

.tv-promo-bar:nth-child(3) {
    position: relative;
    top: 0;
}

.tv-promo-bar:nth-child(4) {
    position: relative;
    top: 0;
}

.tv-promo-bar:nth-child(5) {
    position: relative;
    top: 0;
}

.tv-promo-bar-button {
    background-color: white;
    border: none;
    border-radius: 6px;
    color: #333;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-left: 20px;
    padding: 6px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tv-promo-bar-button:hover {
    background-color: #f8f8f8;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #000;
    text-decoration: none;
    transform: translateY(-1px);
}

.tv-promo-bar-close {
    align-items: center;
    background: none;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    font-size: 24px;
    font-weight: bold;
    height: 30px;
    justify-content: center;
    margin-left: 15px;
    padding: 0;
    transition: all 0.3s ease;
    width: 30px;
    flex-shrink: 0;
}

.tv-promo-bar-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.tv-promo-bar-content {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.tv-promo-bar-text {
    color: white;
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}

.tv-promo-bar-text a {
    color: white;
    text-decoration: underline;
}

.tv-promo-bar-text a:hover {
    color: #f0f0f0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .tv-promo-bar {
        min-height: 45px;
        padding: 0 15px;
    }
    
    .tv-promo-bar-button {
        align-self: flex-end;
        font-size: 11px;
        margin-left: 0;
        margin-right: 12px;
        padding: 6px 12px;
        min-height: -webkit-fill-available;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .tv-promo-bar-close {
        margin: 0;
        position: absolute;
        right: 15px;
        top: 10px;
    }
    
    .tv-promo-bar-content {
        align-items: flex-start;
        gap: 10px;
    }
    
    .tv-promo-bar-text {
        font-size: 14px;
        margin-bottom: 5px;
        width: 100%;
        padding-top: 5px;
    }
}

@media (max-width: 480px) {
    .tv-promo-bar {
        min-height: 40px;
        padding: 0 10px;
    }
    
    .tv-promo-bar-button {
        font-size: 12px;
        margin-right: 20px;
        padding: 5px 10px;
    }
    
    .tv-promo-bar-close {
        font-size: 20px;
        height: 25px;
        right: 10px;
        top: 8px;
        width: 25px;
    }
    
    .tv-promo-bar-content {
        padding: 0 5px;
    }
    
    .tv-promo-bar-text {
        font-size: 13px;
        padding-right: 30px;
    }
}

@media (prefers-contrast: high) {
    .tv-promo-bar-button {
        border: 2px solid #333;
    }
    
    .tv-promo-bar-close {
        border: 1px solid white;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tv-promo-bar {
        animation: none;
    }
    
    .tv-promo-bar-button {
        transition: none;
    }
    
    .tv-promo-bar-close {
        transition: none;
    }
}