.gdpr-cookie-notice {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    padding: 5px 20px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}

.gdpr-cookie-notice-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.gdpr-cookie-notice.hidden {
    display: none;
}

.cookie-notice-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.cookie-notice-text a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
    transition: opacity 0.2s;
}

.cookie-notice-text a:hover {
    opacity: 0.8;
}

.cookie-notice-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn-accept {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.3);
    white-space: nowrap;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.4);
}

.cookie-btn-decline {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(244, 67, 54, 0.3);
    white-space: nowrap;
}

.cookie-btn-decline:hover {
    background: linear-gradient(135deg, #d32f2f, #c62828);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(244, 67, 54, 0.4);
}

@media (max-width: 768px) {
    .gdpr-cookie-notice {
        padding: 5px 15px;
    }
    
    .gdpr-cookie-notice-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .cookie-notice-text {
        font-size: 11px;
        padding-right: 0;
    }
    
    .cookie-notice-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn-accept,
    .cookie-btn-decline {
        flex: 1;
        text-align: center;
        max-width: 120px;
    }
}
