.big-wins-section {
    background-color: #14162c;
    border-radius: 8px;
    padding: 20px 0;
    margin: 30px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.big-wins-header {
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 20px;
}

.big-wins-icon {
    color: #ffc107;
    margin-right: 10px;
}

.big-wins-header h2 {
    color: white;
    font-size: 24px;
    margin: 0;
    flex-grow: 1;
}

.wins-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0 10px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.8s ease;
    width: 100%;
}

.win-card {
    min-width: 180px;
    width: 180px;
    margin-right: 20px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #1e2140;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.win-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.win-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.win-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.win-card-info {
    padding: 12px;
    text-align: center;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.win-card-game {
    color: white;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 17px;
}

.win-card-user {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 8px;
    text-align: center;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
    background: linear-gradient(to right, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.3));
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    color: #4CAF50;
    letter-spacing: 0.5px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.8);
    animation: dot-pulse 1.5s infinite;
}

@keyframes dot-pulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px rgba(76, 175, 80, 0.8); }
    50% { transform: scale(1.3); opacity: 0.7; box-shadow: 0 0 12px rgba(76, 175, 80, 0.6); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px rgba(76, 175, 80, 0.8); }
}

.win-card-amount {
    color: #4caf50;
    font-size: 18px;
    font-weight: bold;
}

.real-time-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #4caf50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(76, 175, 80, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 767px) {
    .win-card {
        min-width: 140px;
        width: 140px;
        margin-right: 10px;
    }
    
    .win-card-image {
        height: 120px;
    }
    
    .win-card-info {
        height: 90px;
        padding: 8px;
    }
    
    .win-card-game {
        font-size: 12px;
    }
    
    .win-card-user {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .win-card-amount {
        font-size: 16px;
    }
    
    .big-wins-header h2 {
        font-size: 20px;
    }
    
    .live-indicator {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .live-dot {
        width: 6px;
        height: 6px;
        margin-right: 4px;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 400px) {
    .win-card {
        min-width: 120px;
        width: 120px;
        margin-right: 8px;
    }
    
    .win-card-image {
        height: 100px;
    }
    
    .win-card-info {
        height: 80px;
    }
    
    .big-wins-header {
        padding: 0 10px;
    }
}

/* Для горизонтальной ориентации на мобильных */
@media (max-width: 767px) and (orientation: landscape) {
    .wins-carousel {
        padding: 0 15px;
    }
    
    .win-card {
        min-width: 160px;
        width: 160px;
    }
}