/*** HIGH ROLLERS ***/
.high_rollers_section {
    padding: 20px 0;
}

.live-feed-wrapper.high_rollers {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: var(--bg-gray);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    overflow-anchor: none;
}

.high_rollers .feed-header-top {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
}

.high_rollers .pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: var(--contrast);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--contrast);
    animation: high-rollers-pulse 2s infinite;
}

@keyframes high-rollers-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 10px var(--contrast); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px transparent; }
    100% { transform: scale(0.95); box-shadow: 0 0 10px var(--contrast); }
}

.high_rollers .feed-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.high_rollers .feed-grid-header,
.high_rollers .feed-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr 40px;
    align-items: center;
    padding: 12px 24px;
    gap: 16px;
}

.high_rollers .feed-grid-header {
    font-size: 12px;
    font-weight: 600;
    color: var(--wh-50);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.high_rollers .feed-row {
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.high_rollers .feed-row:last-child {
    border-bottom: none;
}

.high_rollers .feed-row:hover {
    background-color: rgba(255, 255, 255, 0.04);
    transform: scale(1.01);
    z-index: 2;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.high_rollers .feed-row.feed-row-enter {
    animation: high-rollers-row-enter 0.4s ease-out forwards;
}

@keyframes high-rollers-row-enter {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.high_rollers .feed-row.feed-row-exit {
    animation: high-rollers-row-exit 0.3s ease-in forwards;
}

@keyframes high-rollers-row-exit {
    to {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
        overflow: hidden;
    }
}

.high_rollers .col-game {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 14px;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.high_rollers .game-thumb {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.high_rollers .game-thumb-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.high_rollers .game-thumb-emoji {
    font-size: 18px;
    line-height: 1;
}

.high_rollers .col-user {
    font-size: 13px;
    color: var(--wh-50);
    font-family: monospace;
}

.high_rollers .col-bet {
    font-size: 13px;
    color: var(--wh-50);
}

.high_rollers .mult-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    font-family: monospace;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.high_rollers .mult-badge.m-base {
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.2);
    background: rgba(56, 189, 248, 0.08);
}

.high_rollers .mult-badge.m-epic {
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.3);
    background: rgba(168, 85, 247, 0.08);
}

.high_rollers .mult-badge.m-legend {
    color: #000;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
    border: none;
}

.high_rollers .col-profit {
    font-weight: 700;
    color: var(--contrast);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.high_rollers .col-action {
    display: flex;
    justify-content: flex-end;
}

.high_rollers .play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wh-50);
    transition: all 0.3s ease;
}

.high_rollers .feed-row:hover .play-btn {
    background: var(--contrast);
    color: #000;
    box-shadow: 0 0 15px var(--contrast);
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .high_rollers .feed-grid-header {
        display: none;
    }
    .high_rollers .feed-row {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto auto;
        gap: 6px 12px;
        padding: 14px 16px;
    }
    .high_rollers .col-game {
        grid-column: 1 / 2;
        grid-row: 1;
    }
    .high_rollers .col-profit {
        grid-column: 2 / 3;
        grid-row: 1;
        justify-content: flex-end;
        font-size: 18px;
    }
    .high_rollers .col-user {
        grid-column: 1 / 2;
        grid-row: 2;
        display: block;
        font-size: 12px;
    }
    .high_rollers .col-mult {
        grid-column: 2 / 3;
        grid-row: 2;
        justify-content: flex-end;
    }
    .high_rollers .col-bet {
        grid-column: 1 / 2;
        grid-row: 3;
        display: block;
        font-size: 12px;
    }
    .high_rollers .col-action {
        grid-column: 2 / 3;
        grid-row: 3;
        align-items: flex-end;
    }
}

/*** END HIGH ROLLERS ***/
