/* ==========================================================================
   Buy YouTube Subscribers — Hero Showcase Animations
   Extracted from buy-youtube-subscribers.css for file size management.
   ========================================================================== */

/* --------------------------------------------------------------------------
   HERO SHOWCASE — Notification-style animated panel
   -------------------------------------------------------------------------- */
.bys-hero__showcase {
    position: relative;
    animation: bys-float 6s ease-in-out infinite;
}

@keyframes bys-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.bys-showcase__panel {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Showcase header — focused on shoutout activity */
.bys-showcase__header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: var(--color-gray-900);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
}

.bys-showcase__header-text {
    line-height: 1.3;
}

.bys-showcase__ping {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    position: relative;
    flex-shrink: 0;
}

.bys-showcase__ping::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.3);
    animation: bys-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes bys-ping {
    0% { transform: scale(1); opacity: 0.75; }
    75%, 100% { transform: scale(2); opacity: 0; }
}

/* Card container */
.bys-showcase__cards {
    position: relative;
    height: 185px;
    padding: 0 var(--space-4);
}

.bys-showcase-item {
    position: absolute;
    top: var(--space-3);
    left: var(--space-4);
    right: var(--space-4);
    opacity: 0;
    transform: translateY(12px) scale(0.97);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.bys-showcase-item--active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Notification-style cards with colored left border */
.bys-showcase-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    text-align: left;
    border-left: 3px solid var(--color-gray-300);
}

.bys-showcase-card--comment { border-left-color: #6366f1; }
.bys-showcase-card--post { border-left-color: #ec4899; }
.bys-showcase-card--description { border-left-color: #f59e0b; }

.bys-showcase-card__header {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
}

.bys-showcase-card__avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
    object-fit: cover;
    background: var(--color-gray-100);
}

.bys-showcase-card__name {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    color: var(--color-gray-900);
    display: block;
    line-height: 1.2;
}

.bys-showcase-card__subs {
    font-size: 11px;
    color: var(--color-gray-500);
}

.bys-showcase-card__text {
    font-size: var(--font-size-sm);
    color: var(--color-gray-700);
    line-height: 1.5;
    margin: 0 0 var(--space-2);
}

.bys-showcase-card__mention {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

.bys-showcase-card__label {
    font-size: 11px;
    color: var(--color-gray-500);
    font-weight: var(--font-weight-medium);
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
}

.bys-showcase-card__label i {
    font-size: 10px;
}

/* Subscriber gain notification */
.bys-showcase__gain {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-5);
    background: rgba(52, 211, 153, 0.08);
    border-top: 1px solid rgba(52, 211, 153, 0.15);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: #059669;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bys-showcase__gain--visible {
    opacity: 1;
}

.bys-showcase__gain i {
    font-size: var(--font-size-sm);
}

/* Progress dots */
.bys-hero__showcase-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) 0;
}

.bys-hero__showcase-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gray-300);
    transition: all 300ms ease;
}

.bys-hero__showcase-dot--active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* --------------------------------------------------------------------------
   SHOWCASE RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .bys-hero__showcase {
        animation: none;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .bys-showcase__cards {
        height: 195px;
    }

    .bys-showcase-card {
        padding: var(--space-2) var(--space-3);
    }

    .bys-showcase-card__text {
        font-size: var(--font-size-xs);
        line-height: 1.45;
        margin: 0 0 var(--space-1);
    }

    .bys-showcase-card__avatar-img {
        width: 30px;
        height: 30px;
    }

    .bys-showcase__header {
        padding: var(--space-2) var(--space-4);
        font-size: var(--font-size-xs);
    }

    .bys-showcase__gain {
        padding: var(--space-2) var(--space-4);
    }
}
