/* Marquee dos Streamers */
#marqueeContent {
    display: inline-flex;
    animation: scrollText 20s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.streamer-item {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 0 15px;
    border-radius: 12px;
    margin-right: 30px;
    color: rgb(0, 0, 0);
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-weight: 500;
    gap: 8px;
}

.streamer-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(219, 0, 0, 0.3);
    flex-shrink: 0;
}

.streamer-item[data-status="online"] {
    
    text-shadow: 0 0 8px rgba(28, 255, 0, 0.8), 2px 2px 8px rgba(28, 255, 0, 0.5);
}

.streamer-item[data-status="offline"] {
    color: rgb(0, 0, 0);
   /* text-shadow: 0 0 6px rgba(255, 68, 68, 0.6), 2px 2px 6px rgba(0, 0, 0, 0.4); */
}

.streamer-item:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.status-online {
    background: #1cff00;
    box-shadow: 0 0 10px rgba(28, 255, 0, 0.5);
}

.status-offline {
    background: #777;
}

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

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-10%);
    }
}

/* Layout para exibição de streamer */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    padding: 20px;
}

.info-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-column p {
    color: white;
    margin: 10px 0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.info-column button {
    background: #9146ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.info-column button:hover {
    background: #7535cc;
    transform: scale(1.05);
}

.video-column {
    width: 100%;
    height: auto;
    min-height: 350px;
}

.video-column iframe {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.live-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #1cff00;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1s infinite;
    box-shadow: 0 0 10px rgba(28, 255, 0, 0.5);
}

/* Streamers Cards Grid */
.streamers-cards-section {
    background: #101014;
    padding: 60px 0;
}

.streamers-cards-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.streamers-cards-grid:active {
    cursor: grabbing;
}

.streamers-cards-grid::-webkit-scrollbar {
    height: 8px;
}

.streamers-cards-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.streamers-cards-grid::-webkit-scrollbar-thumb {
    background: rgba(28, 255, 0, 0.3);
    border-radius: 4px;
}

.streamers-cards-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(28, 255, 0, 0.5);
}

.streamer-card {
    position: relative;
    min-width: 260px;
    width: 260px;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #18181c;
    background: rgba(20, 20, 20, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.streamer-card:hover {
    transform: translateY(-8px);
}

.streamer-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.streamer-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    pointer-events: none;
}

.streamer-card-live-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #1cff00;
    color: #000;
    padding: 4px 9px;
    border-radius: 5px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 3;
    box-shadow: 0 0 12px rgba(28, 255, 0, 0.6), 0 0 25px rgba(28, 255, 0, 0.3);
    animation: pulse-green 2s infinite;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.streamer-card-live-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #000;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.5s infinite;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 20px rgba(28, 255, 0, 0.6), 0 0 40px rgba(28, 255, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(28, 255, 0, 0.8), 0 0 60px rgba(28, 255, 0, 0.5);
    }
}

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

.streamer-card-viewers {
    position: absolute;
    bottom: 45px;
    left: 8px;
    background: rgba(0, 0, 0, 0.75);
    padding: 4px 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    backdrop-filter: blur(4px);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.streamer-card-viewers-dot {
    width: 5px;
    height: 5px;
    background: #1cff00;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(28, 255, 0, 0.8);
    animation: pulse-dot 1.5s infinite;
    flex-shrink: 0;
}

.streamer-card-name {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
    margin: 0;
    z-index: 3;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 20px);
    text-align: center;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.streamer-card-offline {
    opacity: 0.6;
    filter: grayscale(0.5);
}

.streamer-card-offline .streamer-card-live-badge {
    display: none;
}

.streamer-card-offline .streamer-card-viewers {
    display: none;
}

.streamer-card-placeholder {
    background: linear-gradient(135deg, rgba(28, 255, 0, 0.1) 0%, rgba(219, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 3rem;
    font-weight: 800;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
    
    .video-column {
        min-height: 250px;
    }
    
    .streamer-item {
        font-size: 0.9rem;
        padding: 0 10px;
        gap: 10px;
    }

    .streamer-card {
        min-width: 240px;
        width: 240px;
        height: 320px;
    }

    .streamers-cards-grid {
        gap: 15px;
        padding: 15px 0;
    }
}
