        body {
            background-color: rgb(14, 14, 14);
            color: white;
            margin: 0;
            font-family: "Comic Sans MS", sans-serif;
        }

        .top-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background-color: rgba(0, 0, 0, 0.486);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }

        .logo {
            margin-top: 10px;
            height: 50px;
            transform: scale(2.5);
            transform-origin: center;
            image-rendering: pixelated;
        }
        
        .mid-msg {
            display: flex;
            align-items: center;      /* vertikal zentrieren */
            justify-content: center;  /* horizontal zentrieren */
            height: 100vh;            /* nimmt die volle Fensterhöhe ein */
            text-align: center;       /* Text schön mittig */
        }
        
        .impressum-container {
            display: flex;
            justify-content: center; /* horizontal zentrieren */
            align-items: center;     /* vertikal zentrieren, falls Höhe > Link */
            height: 60px;            /* z.B. Höhe des Footers oder gewünschten Bereichs */
            overflow: hidden;         /* verhindert Scrollbar beim scale */
        }
        
        .impressum-link {
            color: #ffffff71;
            text-decoration: none;
            padding: 6px 12px;
            transition: all 0.2s ease;
            font-weight: bold;
            text-align: center;
        }
        
        .impressum-link:hover {
            color: #d6d6d6;
            transform: scale(1.05);
        }



        main {
            padding-top: 100px;
            max-width: 1000px;
            margin: auto;
        }

        .filter-bar {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
        }

        .filter-bar button {
            background-color: #222;
            color: white;
            border: 1px solid #444;
            padding: 6px 12px;
            border-radius: 8px;
            cursor: pointer;
        }

        .filter-bar button:hover {
            background-color: #333;
        }

        .grid {
            display: flex;
            flex-direction: column;  /* untereinander anordnen */
            gap: 20px;               /* Abstand zwischen den Karten */
            max-width: 800px;        /* optional: maximale Breite */
            margin: 0 auto;          /* zentriert alles schön in der Mitte */
        }

        .card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 16px;
            background-color: #1a1a1a;
            border-radius: 12px;
            box-shadow: 0 0 10px rgba(0,0,0,0.4);
            width: 100%;             /* nimmt volle Breite im Container */
        }
        
        .card img {
            object-fit: cover;
            border-radius: 8px;
        }
        
        /* Musik quadratisch */
        .card.music img {
            width: 150px;
            height: 150px;
            object-fit: cover;   /* quadratisch */
        }
        
        /* Hochkant (Anime/Serien/Filme/Spiele) */
        .card.portrait img {
            max-height: 300px;   /* maximale Höhe */
            width: auto;
            object-fit: contain;  /* proportional skalieren, nicht gequetscht */
            border-radius: 8px;
        }
        
        .card-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .card h3 {
            margin: 0;
            font-size: 1.1em;
        }
        
        .rating {
            color: gold;
            margin-top: 4px;
        }
        
        .note {
            font-size: 0.9em;
            color: #ccc;
            margin-top: 8px;
        }
