/* GDPR Cookie Consent Banner */
#gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 31, 34, 0.95);
    border-top: 2px solid #c05584;
    padding: 1rem;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

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

.gdpr-content p {
    color: #ffffff;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.gdpr-content a {
    color: #c05584;
    text-decoration: underline;
}

.gdpr-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    justify-content: center;
}

.gdpr-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ffffff;
    border-radius: 4px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: all 0.2s ease;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gdpr-accept:hover {
    background: #c05584;
    border-color: #c05584;
}

.gdpr-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 768px) {
    .gdpr-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gdpr-buttons {
        justify-content: center;
    }
}