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

html {
    height: 100vh;
    width: 100vw;
    scroll-behavior: smooth;
}

body {
    background: #008080;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,.1) 2px, rgba(255,255,255,.1) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(0,0,0,.1) 2px, rgba(0,0,0,.1) 4px);
    font-family: 'MS Sans Serif', sans-serif;
    color: #000000;
    line-height: 1.4;
    min-height: 100vh;
    padding: 10px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #c0c0c0;
    border: 2px outset #c0c0c0;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(to bottom, #0080ff, #004080);
    border: 2px inset #c0c0c0;
    color: white;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 0px #000000;
    font-family: 'MS Sans Serif', sans-serif;
}

.hooks {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hook {
    font-size: 0.9rem;
    color: white;
    text-align: center;
}

.hook a {
    color: white;
    text-decoration: none;
    font-weight: normal;
    padding: 4px 8px;
    border: 1px outset #c0c0c0;
    background: #c0c0c0;
    color: #000000;
    display: inline-block;
    font-size: 11px;
    font-family: 'MS Sans Serif', sans-serif;
}

.hook a:hover {
    border: 1px inset #c0c0c0;
    background: #a0a0a0;
}

.hook a:active {
    border: 1px inset #c0c0c0;
    background: #808080;
}

.section {
    padding: 15px;
    background: #c0c0c0;
    border-bottom: 1px solid #808080;
}

.section-title {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
    font-family: 'MS Sans Serif', sans-serif;
    background: linear-gradient(to bottom, #0080ff, #004080);
    color: white;
    padding: 3px 8px;
    border: 1px outset #c0c0c0;
}

.quirky-title {
    font-family: 'MS Sans Serif', sans-serif;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
    font-weight: normal;
}

.audio-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-bottom: 15px;
}

.audio-item {
    background: #c0c0c0;
    border: 2px inset #c0c0c0;
    padding: 8px;
    box-shadow: 1px 1px 0px #808080;
}

.audio-item:hover {
    background: #d0d0d0;
}

.audio-item p {
    font-weight: bold;
    color: #000000;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-family: 'MS Sans Serif', sans-serif;
}

audio {
    width: 100%;
    height: 25px;
    background: #c0c0c0;
    border: 1px inset #c0c0c0;
}

.video-section {
    background: #c0c0c0;
    border: 2px inset #c0c0c0;
    padding: 15px;
    text-align: center;
}

iframe {
    width: 100%;
    height: 300px;
    border: 2px inset #c0c0c0;
    background: #000000;
}

.konzert-termine {
    background: #c0c0c0;
    border: 2px inset #c0c0c0;
    padding: 15px;
    margin-top: 10px;
}

.konzert-termine .section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.konzert {
    background: #c0c0c0;
    border: 2px inset #c0c0c0;
    padding: 10px;
    margin: 8px 0;
    box-shadow: 1px 1px 0px #808080;
}

.konzert:hover {
    background: #d0d0d0;
}

.konzert h4 {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: bold;
    font-family: 'MS Sans Serif', sans-serif;
}

.konzert-details {
    margin: 8px 0;
    color: #000000;
    font-size: 0.85rem;
    font-family: 'MS Sans Serif', sans-serif;
}

.konzert-details strong {
    color: #000000;
    font-weight: bold;
}

.konzert-links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.konzert-links a {
    background: #c0c0c0;
    color: #000000;
    padding: 3px 8px;
    border: 1px outset #c0c0c0;
    text-decoration: none;
    font-weight: normal;
    font-size: 11px;
    font-family: 'MS Sans Serif', sans-serif;
    display: inline-block;
}

.konzert-links a:hover {
    border: 1px inset #c0c0c0;
    background: #a0a0a0;
}

.konzert-links a:active {
    border: 1px inset #c0c0c0;
    background: #808080;
}

.footer {
    text-align: center;
    padding: 15px;
    background: #c0c0c0;
    border-top: 1px solid #808080;
}

.footer a {
    background: #c0c0c0;
    color: #000000;
    padding: 4px 12px;
    border: 1px outset #c0c0c0;
    text-decoration: none;
    font-weight: normal;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 10px;
    font-family: 'MS Sans Serif', sans-serif;
}

.footer a:hover {
    border: 1px inset #c0c0c0;
    background: #a0a0a0;
}

.footer a:active {
    border: 1px inset #c0c0c0;
    background: #808080;
}

.impressum {
    font-size: 10px;
    color: #000000;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #808080;
    font-family: 'MS Sans Serif', sans-serif;
}

/* Windows 98 spezifische Effekte */
.section:nth-child(odd) {
    transform: none;
}

.section:nth-child(even) {
    transform: none;
}

/* Scrollbar Styling für Windows 98 Look */
::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: #c0c0c0;
    border: 1px inset #c0c0c0;
}

::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border: 1px outset #c0c0c0;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

::-webkit-scrollbar-button {
    background: #c0c0c0;
    border: 1px outset #c0c0c0;
    height: 16px;
}

::-webkit-scrollbar-button:hover {
    background: #a0a0a0;
}

@media (max-width: 768px) {
    .section {
        padding: 10px;
    }
    
    .header {
        padding: 15px 10px;
    }
    
    .hook {
        font-size: 0.8rem;
    }
    
    .konzert-links {
        flex-direction: column;
    }
    
    iframe {
        height: 200px;
    }
    
    .container {
        margin: 5px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1rem;
    }
}

/* Zusätzliche Windows 98 Elemente */
.window-controls {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    gap: 2px;
}

.window-button {
    width: 16px;
    height: 14px;
    background: #c0c0c0;
    border: 1px outset #c0c0c0;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'MS Sans Serif', sans-serif;
}

.window-button:hover {
    border: 1px inset #c0c0c0;
}

/* Fokus-Effekte für bessere Accessibility */
a:focus, button:focus {
    outline: 1px dotted #000000;
    outline-offset: 2px;
}