/* Globale Variablen für das helle Design mit Farbverlauf */
:root {
    --hintergrundVerlaufBlauLila: linear-gradient(90deg, #007bff 0%, #8a2be2 100%);
    --hintergrundWeiss: #ffffff;
    --schriftFarbeDunkel: #333333;
    --schriftFarbeHell: #ffffff;
    --schriftArtStandard: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

/* Anti-Wackel-Schutz (Bugfix Spreadshop Mobile) */
html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Basis-Design für den Körper */
.hauptSeitenKoerper {
    background-color: var(--hintergrundWeiss);
    color: var(--schriftFarbeDunkel);
    font-family: var(--schriftArtStandard);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Schnee-Animation (Ausgelagert aus HTML) */
.schneeOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-color: transparent;
    background-image:
        radial-gradient(1px 1px at 20px 30px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 40px 70px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 60px 10px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 80px 50px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 100px 80px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 120px 20px, #ffffff, rgba(0,0,0,0));
    background-size: 150px 150px;
    animation: schneeFall 25s linear infinite;
    opacity: 0.15;
}

@keyframes schneeFall {
    from {
        background-position: 0px 0px;
    }
    to {
        background-position: 150px 750px;
    }
}

/* Kopfbereich mit Farbverlauf */
.kopfBereichVerlauf {
    background: var(--hintergrundVerlaufBlauLila);
    padding: 1rem 0;
}

.hauptNavigation {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navigationsListe {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Navigations-Links mit modernem Slide-In Unterstrich */
.navigationsLink {
    color: var(--schriftFarbeHell);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.navigationsLink:hover, .navigationsLink.aktiv {
    opacity: 1;
}

.navigationsLink::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--schriftFarbeHell);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navigationsLink:hover::after, .navigationsLink.aktiv::after {
    width: 100%;
}

/* Mittlerer, weißer Inhaltsbereich als schwebende Karte mit dynamischem Padding */
.hauptInhaltWeiss {
    flex: 1;
    max-width: 800px;
    margin: 3rem auto;
    padding: clamp(1.5rem, 5vw, 4rem);
    text-align: center;
    background-color: var(--hintergrundWeiss);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Full-Bleed Shop Modifikatoren (Edge-to-Edge Layout) */
.shopSonderLayout {
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}

.shopInhaltPadding {
    padding-left: clamp(1.5rem, 5vw, 4rem);
    padding-right: clamp(1.5rem, 5vw, 4rem);
}

.hauptUeberschrift {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--schriftFarbeDunkel);
    line-height: 1.2;
}

.logoBereich {
    margin-bottom: 2rem;
}

.clanLogoBild {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    transition: transform 0.3s ease;
}

.clanLogoBild:hover {
    transform: scale(1.05);
}

.bildNachweisText {
    font-size: 0.7rem;
    color: #888888;
    margin-top: 0.5rem;
}

.textBereichZentriert {
    max-width: 600px;
    margin: 0 auto;
}

.beschreibungsText {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--schriftFarbeDunkel);
}

/* Affiliate Banner Styling */
.affiliateBannerBereich {
    margin: 2rem auto;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.affiliateBannerBild {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.affiliateBannerBild:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Zwei-Klick Shop-Zustimmungsbox (DSGVO) */
.shopZustimmungsBox {
    background-color: var(--hintergrundWeiss);
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.shopZustimmungsTitel {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--schriftFarbeDunkel);
}

.shopZustimmungsText {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--schriftFarbeDunkel);
}

.shopKnopfContainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.shopAkzeptierenKnopf {
    background: var(--hintergrundVerlaufBlauLila);
    color: var(--schriftFarbeHell);
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 100%;
}

.shopAkzeptierenKnopf:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Unterer Aktionsbereich mit Farbverlauf */
.aktionsBereichVerlauf {
    background: var(--hintergrundVerlaufBlauLila);
    color: var(--schriftFarbeHell);
    padding: 4rem 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.zitatBlock {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.5;
    max-width: 700px;
}

.zitatUrheber {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.discordTransparenterKnopf {
    display: inline-block;
    border: 2px solid var(--schriftFarbeHell);
    background: transparent;
    color: var(--schriftFarbeHell);
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.discordTransparenterKnopf:hover {
    background-color: var(--schriftFarbeHell);
    color: var(--schriftFarbeDunkel);
    transform: scale(1.05);
}

.werbeBereichGamertransfer {
    margin-top: 1rem;
}

.gamertransferBild {
    max-width: 100%;
    height: auto;
}

/* Weiße Fußzeile & Zentrierung */
.fussZeileWeiss {
    background-color: var(--hintergrundWeiss);
    padding: 1.5rem 20px;
    border-top: 1px solid #eeeeee;
}

.fussZeileInnen {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyrightText {
    font-size: 0.75rem;
    color: var(--schriftFarbeDunkel);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sozialeMedienLinks {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.sozialerLink {
    color: var(--schriftFarbeDunkel);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.sozialerLink:hover {
    color: #007bff;
}

.trennLinie {
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

/* Mobile Anpassungen */
@media (min-width: 500px) {
    .shopKnopfContainer {
        flex-direction: row;
        justify-content: center;
    }
    
    .shopAkzeptierenKnopf {
        width: auto;
    }
}

@media (max-width: 600px) {
    .hauptUeberschrift {
        font-size: 2rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hauptNavigation {
        padding: 0 10px;
    }
    
    .navigationsListe {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 1rem;
        padding: 0;
    }

    .hauptInhaltWeiss {
        padding: 1.5rem 15px;
    }

    .shopSonderLayout {
        padding-left: 0;
        padding-right: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        max-width: 100%;
    }

    .shopInhaltPadding {
        padding-left: 15px;
        padding-right: 15px;
    }

    #myShop {
        width: 100% !important;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .discordTransparenterKnopf {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .fussZeileInnen {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .textMobilVerstecken {
        display: none;
    }
    
    .navigationsListe {
        gap: 0.5rem;
    }
}
