.streamers-section {
    min-height: 100vh;
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.streamers-section h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 3rem;
}

.streamers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.streamer-card {
    background: rgb(0 0 0 / 74%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.streamer-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.streamer-card.live {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.streamer-card.live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ff6b6b);
    animation: pulse 2s ease-in-out infinite;
}

.streamer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.streamer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.streamer-card.live .streamer-avatar {
    border-color: #ff0000;
}

.streamer-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--light-text);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.status-badge.live {
    background: rgba(255, 0, 0, 0.2);
    color: #ff4444;
    animation: pulse 2s ease-in-out infinite;
}

.status-badge.offline {
    background: rgba(128, 128, 128, 0.2);
    color: #999;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator.live {
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
}

.status-indicator.offline {
    background: #666;
}

.stream-info {
    margin: 1rem 0;
}

.stream-title {
    font-size: 0.95rem;
    color: #ddd;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 40px;
}

.stream-game {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: bold;
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: #aaa;
    font-size: 0.9rem;
}

.stream-button {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    margin-top: 1rem;
}

.stream-button:hover {
    background: #1976D2;
    transform: scale(1.02);
}

.stream-button.live {
    background: #ff0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.stream-button.live:hover {
    background: #cc0000;
}

.stream-button:disabled {
    background: #555;
    cursor: not-allowed;
    opacity: 0.5;
}

.loading {
    text-align: center;
    padding: 3rem;
    grid-column: 1 / -1;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.nav-links a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .streamers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .streamers-section h1 {
        font-size: 2rem;
    }
    
    .streamers-section {
        padding: 100px 15px 40px;
    }
}

@media (min-width: 1400px) {
    .streamers-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 310%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
    margin-left: -43%;
}

.logo img:hover {
    transform: scale(1.05);
}



body.community-page {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Optional: damit nichts einfarbig drüber malt */
body.community-page .streamers-section {
    background: transparent;
}