:root {
    --patch-black: #0d0d0d;
    --text-cream: #f1ebd9;     /* Die cremeweiße Textfarbe des Logos */
    --stripe-yellow: #f1b31b;  /* Retro-Gelb */
    --stripe-orange: #e0531b;  /* Retro-Orange */
    --stripe-red: #b8171d;     /* Retro-Rot */
    --card-bg: #161616;
    --card-hover: #222222;
}

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

body {
    background-color: #050505;
    /* Dezente Texturierung im Hintergrund für den Stoff/Kutten-Look */
    background-image: 
        radial-gradient(rgba(255,255,255,0.03) 1px, transparent 0),
        radial-gradient(rgba(255,255,255,0.02) 1px, transparent 0);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
    color: var(--text-cream);
    font-family: 'Impact', 'Arial Black', -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 1rem;
}

/* Cleaner, minimalistischer Sprachwechsler */
.lang-switch {
    align-self: flex-end;
    margin-bottom: 1.5rem;
    max-width: 500px;
    width: 100%;
    text-align: right;
}
.lang-switch a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 1px solid #222;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.lang-switch a:hover {
    color: var(--stripe-yellow);
    border-color: var(--stripe-yellow);
}

/* Der Hauptcontainer, aufgebaut wie der gestickte Aufnäher */
.patch-container {
    background-color: var(--patch-black);
    width: 100%;
    max-width: 500px;
    padding: 3rem 2rem 2.5rem 2rem;
    border-radius: 20px; /* Abgerundete Ecken des Patches */
    
    /* Der dicke, gestickte schwarze Rand imitiert durch Box-Shadows */
    box-shadow: 
        0 0 0 4px #000, 
        0 0 0 7px #1c1c1c, 
        0 15px 35px rgba(0,0,0,0.8);
        
    position: relative;
    overflow: hidden;
}

header {
    text-align: left;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 3.5rem; /* Schön wuchtig */
    font-style: italic; /* Schräggestellt wie im Logo */
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -1px;
    color: var(--text-cream);
}

.tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--stripe-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.4rem;
}

/* Das absolute Highlight: Die geschwungenen 70s Retro-Streifen via CSS */
.retro-stripes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: column;
    z-index: 1;
    opacity: 0.85;
    pointer-events: none;
}
/* Styling für die drei Farbbänder */
.stripe { height: 33.33%; width: 100%; }
.stripe.yellow { background-color: var(--stripe-yellow); }
.stripe.orange { background-color: var(--stripe-orange); }
.stripe.red { background-color: var(--stripe-red); }

main {
    position: relative;
    z-index: 2; /* Liegt über den Streifen */
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2rem;
}

/* Die Linktree-Buttons im schnörkellosen Retro-Look */
.link-card {
    background-color: var(--card-bg);
    border: 1px solid #222;
    border-radius: 6px;
    padding: 1.1rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-cream);
    font-size: 1.2rem;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.15s ease;
    display: block;
}

/* Hover-Effekt nutzt die Logo-Farbpalette */
.link-card:hover {
    transform: scale(1.02);
    background-color: var(--card-hover);
    border-color: var(--stripe-yellow);
    color: var(--stripe-yellow);
}

/* Das Highlight für das aktuelle Album */
.link-card.highlight {
    border-color: var(--stripe-orange);
    box-shadow: inset 0 0 10px rgba(224, 83, 27, 0.2);
}
.link-card.highlight:hover {
    border-color: var(--stripe-yellow);
    color: var(--stripe-yellow);
}

footer {
    position: relative;
    z-index: 2;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #444;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif; /* Cleaner Kontrast für Fließtext */
}

summary {
    cursor: pointer;
    margin-top: 0.8rem;
    color: #555;
    transition: color 0.2s;
}
summary:hover {
    color: var(--text-cream);
}

.legal-text {
    text-align: left;
    background: #080808;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #1a1a1a;
    margin-top: 0.8rem;
    line-height: 1.5;
    color: #888;
    max-height: 220px;
    overflow-y: auto;
}
