/* ============================================================
   WORDS — Grundlayout
============================================================ */

body {
    overflow: hidden;
}

/* Textinstallation */
.thought {
    position: absolute;
    white-space: normal;
    max-width: 40vw;
    line-height: 1.4;
    opacity: 0;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    transition: opacity 2s ease;
    pointer-events: none;
    color: var(--fg);
}

/* ============================================================
   MUSIC BUTTON — feste Position (rechts/mittig)
============================================================ */

.music-toggle {
    position: fixed;
    right: 40px;             /* feste Position rechts */
    top: 50%;                /* vertikal mittig */
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border-radius: 50%;
    border: 2px solid var(--accent);

    background: #000;
    color: var(--accent);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 9999;

    font-size: 24px;
    transition: transform 0.25s ease;
}

/* Hover-Effekt */
.music-toggle:hover {
    transform: translateY(-50%) scale(1.12);
}

/* Glow / Corona beim Aktivieren */
.music-toggle.active {
    box-shadow:
        0 0 18px rgba(202,165,95,0.7),
        0 0 36px rgba(202,165,95,0.45),
        0 0 64px rgba(202,165,95,0.25);
    background: #1a1a1a;
    color: var(--accent);
}

/* =========================
   FOOTER – words.html
========================= */

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    /* ✅ exakt gleicher Fensterton wie Seitenhintergrund */
    background: linear-gradient(
        to top,
        /*rgba(13,13,13,0.95),
        rgba(13,13,13,0.75)*/
        /*rgba(0,0,0,0.85),
        rgba(0,0,0,0.4)*/
        color: var(--fg);
    );

    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 33px 0;

    text-align: center;
    font-size: 0.9rem;
    color: rgba(200,200,200,0.5);

    z-index: 2000;
}

/* ✅ Platz für Footer lassen */
body {
    padding-bottom: 70px;
}