/* Sticky Global CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--primary-color);
    padding: 15px 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    animation: slideUp 0.5s ease-out;
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 90%;
    justify-content: space-between;
}

.sticky-text {
    color: white;
    font-size: 1.1em;
}

.sticky-btn {
    background: var(--accent-color);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.4);
    animation: pulse 2s infinite;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (max-width: 768px) {
    .sticky-cta-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .sticky-text {
        font-size: 0.9em;
    }
    .sticky-btn {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
    /* Hide live ticker if it overlaps, or move it up */
    .ticker-wrap {
        bottom: 140px; 
    }
}
