body {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-card-text);
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 0.3);
    backdrop-filter: blur(5px);
    z-index: -1;
}
.profile-pic {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
}
.main-link-card,
.bio-container {
    background-color: var(--color-card-bg);
    color: var(--color-card-text);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.07);
    margin-bottom: 1rem;
}
.main-link-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    transition: transform 0.2s;
}
.main-link-card:hover {
    transform: scale(1.02);
    color: var(--color-card-text);
}
.main-link-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-right: 1rem;
}
.social-icon {
    font-size: 1.75rem;
    color: var(--color-social-icons);
    margin: 0 0.5rem;
    text-decoration: none;
    transition: color 0.2s;
}
.social-icon:hover {
    color: var(--color-primary);
}
.bio-container .bio-content p {
    margin-bottom: 0.5rem;
}
.bio-container .bio-content p:last-child {
    margin-bottom: 0;
}
.bio-container .bio-content a {
    color: var(--color-primary);
    text-decoration: underline;
}
.audio-play-icon {
    cursor: pointer;
    color: var(--color-primary);
    transition: color 0.2s;
}
.audio-play-icon:hover {
    filter: brightness(85%);
}

.spotify-container {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.07);
    line-height: 0;
}
.spotify-container iframe {
    width: 100% !important;
    display: block;
}
.footer-link {
    text-decoration: none;
    color: var(--color-primary);
    font-size: 0.9rem;
}
.footer-link:hover {
    filter: brightness(85%);
}
.modal-body-legal {
    padding-top: 1rem;
}
.modal-body-legal p {
    margin-bottom: 1rem;
}
.modal-body-legal a {
    color: var(--color-primary);
}
.modal-body-legal h2 {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
.modal-body-legal h3 {
    font-size: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
.nav-tabs .nav-link {
    color: var(--color-card-text);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary) var(--color-primary) #fff;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(50 50 50 / 0.9);
    color: #fff;
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    box-shadow: 0 -2px 5px rgb(0 0 0 / 0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-banner p {
    margin: 0;
    margin-right: 15px;
    flex-grow: 1;
}
.cookie-banner a {
    color: #a0cfff;
    text-decoration: underline;
}
.cookie-banner a:hover {
    color: #fff;
}
.cookie-banner button {
    background-color: var(--color-primary, #0d6efd);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}
.cookie-banner button:hover {
    filter: brightness(90%);
}
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner p {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Style für Buttons, die in Quill-Inhalte eingefügt wurden */
.bio-content a.btn,
.modal-body-legal a.btn {
    margin: 0.25rem 0.1rem; /* Kleine Außenabstände */
    vertical-align: baseline; /* Ausrichtung an der Textbasislinie */
    display: inline-block; /* Verhindert seltsame Umbrüche */
    /* Wichtig: Sicherstellen, dass die Button-Textfarbe korrekt ist (Bootstrap macht das meistens) */
    /* color: #fff !important; */ /* Nur falls Bootstrap überschrieben wird */
    text-decoration: none !important; /* Unterstreichung entfernen */
}
.bio-content a.btn:hover,
.modal-body-legal a.btn:hover {
    text-decoration: none !important; /* Unterstreichung auch im Hover entfernen */
    /* color: #fff !important; */
    filter: brightness(90%); /* Leichter Hover-Effekt */
}
