/* Cookie-Consent-Banner */
#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(30, 30, 30, 0.97);
    color: #f0f0f0;
    padding: 16px 24px;
    font-family: 'Source Sans 3', -apple-system, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
}
.consent-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}
.consent-text {
    margin: 0;
    flex: 1;
}
.consent-text a {
    color: #90caf9;
    text-decoration: underline;
}
.consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.consent-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.consent-btn--accept {
    background: #4caf50;
    color: #fff;
}
.consent-btn--accept:hover {
    background: #388e3c;
}
.consent-btn--decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #666;
}
.consent-btn--decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
@media (max-width: 600px) {
    .consent-inner {
        flex-direction: column;
        text-align: center;
    }
    .consent-buttons {
        width: 100%;
        justify-content: center;
    }
}
