/* ============================================
   Sticky Mobile CTA — NEC-590
   Shows on mobile (< 900px), hidden on desktop
   High-converting persistent CTA bar at bottom
   ============================================ */

.nc-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(135deg, #0F6E56, #0a5040);
    color: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0));
    display: none;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (max-width: 900px) {
    .nc-sticky-cta { display: block; }
    body { padding-bottom: 70px; }
}

.nc-sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}

.nc-sticky-cta__text {
    flex: 1;
    min-width: 0;
    font-size: 0.88rem;
    line-height: 1.3;
}
.nc-sticky-cta__text strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}
.nc-sticky-cta__text span {
    color: rgba(255,255,255,0.82);
    font-size: 0.78rem;
}

.nc-sticky-cta__btn {
    background: #f59e0b;
    color: #1A1A1A !important;
    padding: 0.85rem 1.1rem;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.15s;
}
.nc-sticky-cta__btn:active {
    transform: scale(0.96);
}

.nc-sticky-cta__close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    flex-shrink: 0;
    line-height: 1;
}

/* ============================================
   Scroll Reveal Top Pick (appears after scroll)
   ============================================ */
.nc-scroll-alert {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9997;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    padding: 1rem;
    max-width: 320px;
    transform: translateX(400px);
    transition: transform 0.4s ease;
    display: none;
    border-left: 4px solid #f59e0b;
}
@media (max-width: 900px) { .nc-scroll-alert { display: none !important; } }
@media (min-width: 901px) { .nc-scroll-alert { display: block; } }
.nc-scroll-alert.show { transform: translateX(0); }
.nc-scroll-alert__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #888;
}
.nc-scroll-alert__title {
    font-size: 0.78rem;
    color: #f59e0b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.nc-scroll-alert__casino {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.25rem;
}
.nc-scroll-alert__bonus {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.75rem;
}
.nc-scroll-alert__cta {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    background: #0F6E56;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}
