/* Live Activity Feed */
.live-activity-section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.live-activity-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: var(--space-lg);
}

.live-activity-header h2 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.live-activity-feed {
    max-width: 700px;
    margin: 0 auto;
    max-height: 320px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 8px;
    animation: activitySlideIn 0.5s ease-out;
    transition: opacity 0.3s, transform 0.3s;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(59, 130, 246, 0.2);
}

@keyframes activitySlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.activity-icon.type-win {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.activity-icon.type-register {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.activity-icon.type-bonus {
    background: rgba(124, 58, 237, 0.15);
    color: #e91e8c;
}

.activity-icon.type-cashout {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.activity-info {
    flex: 1;
    min-width: 0;
}

.activity-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-text strong {
    color: #fff;
    font-weight: 600;
}

.activity-time {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    margin-top: 2px;
}

.activity-amount {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.activity-amount.positive {
    color: #22c55e;
}

.activity-amount.bonus-amount {
    color: #e91e8c;
}

/* Responsive */
@media (max-width: 768px) {
    .live-activity-feed {
        max-height: 260px;
    }
    .activity-item {
        padding: 10px 12px;
        gap: 10px;
    }
    .activity-icon {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    .activity-text {
        font-size: 0.82rem;
    }
}
