/* ============================================
   Streams Styles
   ============================================ */

.streams-section {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(10, 10, 10, 0.8) 100%);
    border-radius: var(--radius-card);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.streams-section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.streams-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.streams-header i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.streams-title {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin: 0;
}

.streams-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stream-card {
    background: var(--bg-dark);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.stream-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(253, 216, 53, 0.2);
}

.stream-banner {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.stream-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.stream-card:hover .stream-banner img {
    transform: scale(1.05);
}

.live-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 0, 0, 0.9);
    color: var(--text-primary);
    padding: 5px 15px;
    border-radius: var(--radius-live);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.4);
}

.live-badge i {
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.stream-info {
    padding: 20px;
}

.stream-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 0 0 15px 0;
}

.stream-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 8px;
}

.stream-stats i {
    color: var(--accent-blue);
}

.viewer-count {
    color: var(--accent-yellow);
    font-weight: 700;
}

.viewers-text {
    color: var(--text-muted);
}

.stream-source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.stream-source i {
    font-size: 1.1rem;
}

.watch-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: var(--accent-blue);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-button);
    font-weight: 600;
    transition: all 0.3s ease;
}

.watch-btn:hover {
    background: var(--accent-yellow);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.streams-placeholder {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.streams-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.streams-placeholder p {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
    .streams-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .streams-section {
        padding: 20px;
    }
    
    .streams-title {
        font-size: 1.5rem;
    }
    
    .stream-banner {
        height: 200px;
    }
    
    .watch-btn span {
        display: none;
    }
    
    .watch-btn {
        justify-content: center;
    }
}
