h1, h2, h3, h4, h5, h6 {
    color: hsl(48, 100%, 87%);
}
/* Vertical Floating Bands - Desktop Only */
.vertical-band {
    position: fixed;
    top: 0; /* Wieder full-height */
    width: 20%; /* Responsive Breite */
    height: 100vh; /* Full viewport height */
    z-index: 5000; /* Über Content, aber unter Header (9999) */
    overflow: hidden;
    pointer-events: none; /* Don't interfere with page interaction */
    
    background: linear-gradient(180deg,
        rgba(11, 11, 11, 0.4) 0%,
        rgba(163, 135, 45, 0.2) 20%,
        rgba(11, 11, 11, 0.9) 50%,
        rgba(163, 135, 45, 0.2) 80%,
        rgba(11, 11, 11, 0.4) 100%);
    
    border: 2px solid rgba(255, 215, 0, 0.2);
    /* backdrop-filter: blur(8px); - ENTFERNT für schärfere Bänder */
}

/* Static Fog Canvas - directly in band, not in scrolling content */
.vertical-band > canvas.bandFogCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Under content but over background */
    pointer-events: none;
    opacity: 0.7; /* Reduced for subtle effect */
    will-change: auto; /* Remove will-change to avoid artifacts */
}

.left-band {
    left: -50px; /* Weiter raus geschoben */
    border-left: none;
    border-radius: 0 25px 25px 0;
}

.left-band .band-item {
    left: auto;
    right: 10px; /* Rechtsbündig im linken Band */
    transform: none;
    text-align: right;
}

.right-band {
    right: -50px; /* Weiter raus geschoben */
    border-right: none;
    border-radius: 25px 0 0 25px;
}

.right-band .band-item {
    left: 10px; /* Linksbündig im rechten Band */
    right: auto;
    transform: none;
    text-align: left;
}

.band-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2; /* Over the fog canvas */
}

/* Remove old canvas styling */
.band-content canvas.fogCanvas {
    display: none; /* Hide old canvas if any */
}

/* Canvas for Perlin Noise Fog Effect */
.band-content canvas.fogCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    opacity: 0.3; /* Sichtbarkeit des Nebels */
}

.band-item {
    position: absolute;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    margin: 20px 0;
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.band-item:hover {
    opacity: 1;
}

/* Quote Items */
.band-item.quote {
    padding: 15px 10px;
    background: rgba(11, 11, 11, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    /* backdrop-filter: blur(3px); - ENTFERNT für schärfere Texte */
}

.band-item.quote blockquote {
    font-family: 'Almendra SC', serif;
    font-size: 0.7rem;
    line-height: 1.3;
    color: #f5f5dc;
    margin: 0 0 8px 0;
    font-style: italic;
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.3);
}

.band-item.quote cite {
    font-family: 'Times New Roman', serif;
    font-size: 0.6rem;
    color: rgba(255, 215, 0, 0.8);
    font-style: normal;
    display: block;
}

/* Symbol Items */
.band-item.symbol {
    padding: 10px;
}

.band-item.symbol .symbol {
    font-size: 2rem;
    opacity: 0.6;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

/* Date Items */
.band-item.date {
    padding: 8px 15px;
    background: rgba(163, 135, 45, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 15px;
}

.band-item.date .date {
    font-family: 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: bold;
    color: hsl(48, 100%, 87%);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* Responsive - Hide on tablets and mobile */
@media (max-width: 1024px) {
    .vertical-band {
        display: none;
    }
}

/* Fade effects for band edges */
.vertical-band::before,
.vertical-band::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    pointer-events: none;
}

.vertical-band::before {
    top: 0;
    background: linear-gradient(to bottom, 
        rgba(11, 11, 11, 1) 0%,
        rgba(11, 11, 11, 0) 100%);
}

.vertical-band::after {
    bottom: 0;
    background: linear-gradient(to top, 
        rgba(11, 11, 11, 1) 0%,
        rgba(11, 11, 11, 0) 100%);
}
