
    body {
        background-color: #000000;
        color: #b3b3b3;
        font-family: "Times New Roman", Times, serif;
        margin: 0;
        padding: 0;
        cursor: url('cursor.cur'), auto;
        background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png'); /* Dezente Körnung */
    }

    #wrapper {
        width: 850px;
        margin: 20px auto;
        border: 2px solid #333;
        background-color: #050505;
        box-shadow: 0 0 20px #8a0303;
    }

    header {
        border-bottom: 2px double #8a0303;
        padding: 20px;
        text-align: center;
    }

    h1 {
        color: #8a0303;
        font-size: 50px;
        margin: 10px 0;
        letter-spacing: 8px;
        text-transform: uppercase;
        text-shadow: 3px 3px 5px #000;
    }

    nav {
        background: #111;
        padding: 10px;
        border-bottom: 1px solid #8a0303;
        text-align: center;
    }

    nav a {
        color: #8a0303;
        text-decoration: none;
        margin: 0 15px;
        font-weight: bold;
        text-transform: uppercase;
        font-size: 14px;
    }

    nav a:hover {
        color: #fff;
        text-decoration: underline;
    }

    .content {
        padding: 30px;
        line-height: 1.6;
        min-height: 400px;
    }

    .img-placeholder {
        border: 1px solid #444;
        background: #111;
        color: #444;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 15px auto;
        font-style: italic;
    }

    .img-placeholder img {
    width: 100%;          /* Zwingt das Bild, die volle Breite des Containers zu füllen */
    height: 100%;         /* Zwingt das Bild, die volle Höhe des Containers zu füllen */
    object-fit: cover;    /* Verhindert Verzerrung, schneidet die Ränder ab (sehr roher Vibe!) */
    display: block;        /* Beseitigt seltsame Abstände unter dem Bild */
}

    footer {
        border-top: 1px double #8a0303;
        padding: 20px;
        text-align: center;
        font-size: 12px;
        color: #555;
    }

	.social-icons{
	color:white;
}

    .social-icons a {
color:red;
        margin: 0 10px;
        filter: grayscale(70%) brightness(90%);
        transition: 0.3s;
    }

    .social-icons a:hover {
        filter: grayscale(0%) brightness(100%);
    }

    .horde-status {
        border: 1px solid #8a0303;
        padding: 10px;
        background: #0a0000;
        color: #ff0000;
        margin-top: 20px;
        font-family: 'Courier New', Courier, monospace;
    }

    h2 { color: #8a0303; border-left: 5px solid #8a0303; padding-left: 10px; }
    table { width: 100%; border-collapse: collapse; margin-top: 20px; }
    th, td { border: 1px solid #222; padding: 10px; text-align: left; }
    th { background: #111; color: #8a0303; }

    td a {
        color:#b3b3b3;
        
    }


    /* --- THE MODERN CURSE: MOBILE ADAPTATION --- */

/* Flexibler Wrapper statt starrer 850px */
#wrapper {
    max-width: 850px;
    width: 90%; /* Lässt auf dem Handy einen schmalen, dunklen Rand */
}

/* Zwingt alle Platzhalter und Inline-Styles in die Knie */
.img-placeholder {
    max-width: 100% !important;
    height: auto !important;
}

.img-placeholder img {
    width: 100%;
    height: auto;
}

/* Anpassungen für die kleinen schwarzen Spiegel (Smartphones unter 768px Breite) */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 32px; /* Bandname verkleinern, damit er nicht umbricht */
        letter-spacing: 2px;
    }
    
    /* Navigation anpassen, damit man mit dicken Fingern trifft */
    nav a {
        display: inline-block;
        margin: 5px 10px;
        line-height: 2;
    }

    /* Flexboxen (wie die zwei Fotos in der Bio) auf dem Handy untereinander anordnen */
    div[style*="display: flex"] {
        flex-direction: column;
        align-items: center;
    }
    
    /* Abstand zwischen den Bio-Fotos auf Mobile */
    div[style*="display: flex"] .img-placeholder {
        margin-bottom: 20px;
    }
    
    .content {
        padding: 15px; /* Weniger Rand im Textbereich auf kleinen Screens */
    }

    /* Tabellen (Tourdaten & Releases) horizontal scrollbar machen, damit sie das Layout nicht sprengen */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}