/* Countdown strip - sağ kenar sabit */
.countdown-strip {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #1a237e 0%, #0d47a1 100%);
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 0 12px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    cursor: pointer;
    z-index: 9998;
    overflow: hidden;
    text-decoration: none;
    transition: width 0.28s cubic-bezier(.4,0,.2,1), box-shadow 0.25s ease;
    gap: 0;
    padding: 0;
}
.countdown-strip:hover {
    width: 250px;
    box-shadow: -4px 0 22px rgba(0,0,0,0.35);
    color: #fff;
    text-decoration: none;
}
.countdown-strip__bist-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    background: #fff;
    padding: 8px;
}
.countdown-strip__hover {
    display: block;
    white-space: nowrap;
    padding: 0 14px 0 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.2s ease 0.05s, transform 0.2s ease 0.05s;
    pointer-events: none;
}
.countdown-strip:hover .countdown-strip__hover {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
