.live-auctions {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #ff4444, #ff6b6b);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

.live-badge i {
    margin-right: 4px;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.auctions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.auction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.auction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.auction-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.auction-card:hover .car-image img {
    transform: scale(1.05);
}

.car-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auction-card:hover .car-overlay {
    opacity: 1;
}

.car-info h4 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.car-details {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.car-details span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-date {
    font-size: 12px;
    color: #999;
}

.no-auctions {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-auctions i {
    font-size: 48px;
    color: #6c757d;
    margin-bottom: 16px;
}

.no-auctions p {
    color: #6c757d;
    margin-bottom: 20px;
}

.auctions-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Адаптивность */
@media (max-width: 768px) {
    .auctions-grid {
        grid-template-columns: 1fr;
    }
    
    .car-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .auctions-actions {
        flex-direction: column;
    }
}