/* Grunddesign im Stil deiner Weltzeituhr */
body {
    background-color: #0b0e14;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    padding: 40px 0;
    text-align: center;
}

h1 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #0088ff;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

/* Das Grid-System */
.photo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.channel-card {
    width: 12%; /* Ähnlich wie deine 10% bei den Thumbnails */
    min-width: 140px;
}

.thumbnail {
    width: 100%;
    height: 140px; /* Feste Höhe für Einheitlichkeit */
    object-fit: contain; /* Best Fit ohne Verzerrung */
    border: 1px solid #ffffff;
    background-color: #161b22;
    transition: all 0.4s ease;
    
    color: rgba(255, 255, 255, 0.7);
    
    /* Der Graustufen-Effekt für stoische Ruhe */
    filter: grayscale(100%) brightness(0.8);
    cursor: pointer;
}

.thumbnail:hover {
    filter: grayscale(0%) brightness(1.1);
    border-color: #0088ff;
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.3);
    transform: translateY(-5px);
}

.channel-info {
    margin-top: 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

/* Der Zurück-Button mit weißem Pfeil für Kontrast */
.nav-back {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #0088ff;
    border: 1px solid rgba(0, 136, 255, 0.4);
    padding: 10px 20px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.nav-back svg {
    fill: #ffffff; /* Weißer Pfeil wie besprochen */
    margin-right: 10px;
}

.nav-back:hover {
    background: rgba(0, 136, 255, 0.1);
    border-color: #0088ff;
}
