/* Twitch стримы */
.Twitch-Stream {
    background: rgba(10, 10, 20, 0.7);
    padding: 60px 0;
}

.twitch-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: flex-start;
}

.twitch-player {
    flex: 2;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.twitch-player iframe {
    width: 100%;
    height: 500px;
    display: block;
    border: none;
}

.twitch-chat {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.twitch-chat iframe {
    width: 100%;
    height: 500px;
    display: block;
    border: none;
}

.twitch-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    color: var(--gray);
    font-size: 1.1rem;
}

.twitch-container iframe {
    transition: opacity 0.3s ease;
}

.twitch-container iframe[src=""] {
    opacity: 0;
}

.twitch-fallback {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: var(--gray);
}

.twitch-fallback p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}