/**
 * SlotTurbo Sticky Banners Styles
 */

/* Sticky Top */
.slotturbo-sticky-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.slotturbo-sticky-top.slotturbo-sticky-hidden {
    transform: translateY(-100%);
}

/* Sticky Bottom */
.slotturbo-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: #1a1a1a;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

/* Common Sticky Styles */
.slotturbo-sticky-banner {
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.slotturbo-sticky-banner.slotturbo-sticky-closed {
    opacity: 0;
    transform: translateY(100%);
}

.slotturbo-sticky-top.slotturbo-sticky-closed {
    transform: translateY(-100%);
}

.slotturbo-sticky-content {
    display: inline-block;
    max-width: 100%;
}

.slotturbo-sticky-close {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}

.slotturbo-sticky-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .slotturbo-sticky-banner {
        padding: 8px;
    }

    .slotturbo-sticky-close {
        right: 5px;
        width: 24px;
        height: 24px;
        font-size: 16px;
    }
}

/* Account for admin bar */
.admin-bar .slotturbo-sticky-top {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .slotturbo-sticky-top {
        top: 46px;
    }
}