/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #02040d;
    color: white;
    min-height: 100vh;
    padding: 96px 20px 60px;
    position: relative;
    overflow-x: hidden;
}

/* Linkes und rechtes zufälliges Kategoriebild */
.kategorie-seitenbild {
    position: fixed;
    top: 72px;
    bottom: 0;
    width: 26vw;
    max-width: 430px;
    min-width: 260px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

.kategorie-seitenbild-links::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 4, 13, 0.05), rgba(2, 4, 13, 0.92));
}


.kategorie-seitenbild-rechts::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(2, 4, 13, 0.05), rgba(2, 4, 13, 0.92));
}

/*container*/
.container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* HEADER */
.kategorie-header {
    margin-bottom: 30px;
}

.kategorie-tag {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8e8cff;
    font-weight: bold;
}

.kategorie-header h1 {
    font-size: 42px;
    margin-top: 8px;
}

/* LISTE */
.kategorie-liste {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* LISTENELEMENT */
.kategorie-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.kategorie-item:hover {
    border-color: rgba(124, 140, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(6px);
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.15);
}

.kategorie-item img,
.kategorie-item-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.kategorie-item-placeholder {
    background: linear-gradient(135deg, #1a1a3e, #6c63ff, #050816);
}

.kategorie-item span {
    font-size: 16px;
    font-weight: bold;
    color: #e0e8ff;
}
@media (max-width: 1360px) {
    .kategorie-seitenbild {
        display: none;
    }
}